rust/src/test/run-pass/move-3.rs

18 lines
374 B
Rust
Raw Normal View History

2011-05-31 18:11:30 -05:00
use std;
import std::uint;
2011-07-27 07:19:39 -05:00
fn test(x: bool, foo: @{x: int, y: int, z: int}) -> int {
let bar = foo;
let y: @{x: int, y: int, z: int};
if x { y <- bar; } else { y = @{x: 4, y: 5, z: 6}; }
ret y.y;
2011-05-31 18:11:30 -05:00
}
fn main() {
2011-07-27 07:19:39 -05:00
let x = @{x: 1, y: 2, z: 3};
uint::range(0u, 10000u) {|i|
2011-05-31 18:11:30 -05:00
assert (test(true, x) == 2);
};
2011-05-31 18:11:30 -05:00
assert (test(false, x) == 5);
}