2012-09-12 00:46:20 +00:00
|
|
|
extern mod std;
|
2011-09-23 21:58:06 +00:00
|
|
|
|
|
|
|
fn test(x: bool, foo: ~{x: int, y: int, z: int}) -> int {
|
|
|
|
let bar = foo;
|
2012-03-22 15:39:41 +00:00
|
|
|
let mut y: ~{x: int, y: int, z: int};
|
2012-10-23 18:11:23 +00:00
|
|
|
if x { y = move bar; } else { y = ~{x: 4, y: 5, z: 6}; }
|
2012-08-02 00:30:05 +00:00
|
|
|
return y.y;
|
2011-09-23 21:58:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = ~{x: 1, y: 2, z: 3};
|
2012-06-30 23:19:07 +00:00
|
|
|
for uint::range(0u, 10000u) |_i| {
|
2011-09-23 21:58:06 +00:00
|
|
|
assert (test(true, x) == 2);
|
2011-10-21 12:12:12 +00:00
|
|
|
}
|
2011-09-23 21:58:06 +00:00
|
|
|
assert (test(false, x) == 5);
|
|
|
|
}
|