aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-08-10 16:03:58 -0700
committerGraydon Hoare <[email protected]>2010-08-10 16:03:58 -0700
commit9f6dec9e13f17bb8a42521f6884a09eebeb023cb (patch)
tree51ba27c76d0d129b4103b46282e8e3d252509a77 /src/test/run-pass
parentMerge commit 'tohava/master' (diff)
downloadrust-9f6dec9e13f17bb8a42521f6884a09eebeb023cb.tar.xz
rust-9f6dec9e13f17bb8a42521f6884a09eebeb023cb.zip
Always bounce mul/div/mod ops. Closes #131 harder.
Diffstat (limited to 'src/test/run-pass')
-rw-r--r--src/test/run-pass/arithmetic-interference.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/run-pass/arithmetic-interference.rs b/src/test/run-pass/arithmetic-interference.rs
deleted file mode 100644
index 588148bb..00000000
--- a/src/test/run-pass/arithmetic-interference.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-// Testcase for issue #131.
-
-fn main() -> () {
- let int a = 10;
- log a;
- check (a * (a - 1) == 90);
-}