aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/arith-0.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/arith-0.rs')
-rw-r--r--src/test/run-pass/arith-0.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/arith-0.rs b/src/test/run-pass/arith-0.rs
index 7587b005..857eaa8e 100644
--- a/src/test/run-pass/arith-0.rs
+++ b/src/test/run-pass/arith-0.rs
@@ -1,5 +1,5 @@
fn main() -> () {
let int a = 10;
log a;
- check (a * (a - 1) == 90);
+ assert (a * (a - 1) == 90);
} \ No newline at end of file