rust/src/test/run-pass/opeq.rs
2010-06-23 21:03:09 -07:00

23 lines
202 B
Rust

// -*- rust -*-
fn main() {
let int x = 1;
x *= 2;
log x;
check (x == 2);
x += 3;
log x;
check (x == 5);
x *= x;
log x;
check (x == 25);
x /= 5;
log x;
check (x == 5);
}