rust/src/test/run-pass/opeq.rs

20 lines
230 B
Rust
Raw Normal View History

2010-06-23 21:03:09 -07:00
// -*- rust -*-
fn main() {
2011-07-27 14:19:39 +02:00
let x: int = 1;
x *= 2;
log x;
assert (x == 2);
x += 3;
log x;
assert (x == 5);
x *= x;
log x;
assert (x == 25);
x /= 5;
log x;
assert (x == 5);
}