rust/src/test/run-pass/arith-0.rs

5 lines
81 B
Rust
Raw Normal View History

2010-08-09 08:53:37 -05:00
fn main() -> () {
let int a = 10;
log a;
check (a * (a - 1) == 90);
}