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

19 lines
229 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
fn main() {
2011-07-27 07:19:39 -05: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);
}