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

5 lines
81 B
Rust
Raw Normal View History

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