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

8 lines
99 B
Rust
Raw Normal View History

fn main() {
let a: int = 10;
log_full(core::debug, a);
assert (a * (a - 1) == 90);
}