2011-05-31 16:11:30 -07:00
|
|
|
use std;
|
2011-12-13 16:25:51 -08:00
|
|
|
import uint;
|
2011-05-31 16:11:30 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
fn test(x: bool, foo: @{x: int, y: int, z: int}) -> int {
|
|
|
|
let bar = foo;
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut y: @{x: int, y: int, z: int};
|
2011-07-27 14:19:39 +02:00
|
|
|
if x { y <- bar; } else { y = @{x: 4, y: 5, z: 6}; }
|
2012-08-01 17:30:05 -07:00
|
|
|
return y.y;
|
2011-05-31 16:11:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 14:19:39 +02:00
|
|
|
let x = @{x: 1, y: 2, z: 3};
|
2012-06-30 16:19:07 -07:00
|
|
|
for uint::range(0u, 10000u) |i| {
|
2011-05-31 16:11:30 -07:00
|
|
|
assert (test(true, x) == 2);
|
2011-10-21 14:12:12 +02:00
|
|
|
}
|
2011-05-31 16:11:30 -07:00
|
|
|
assert (test(false, x) == 5);
|
2011-08-15 21:54:52 -07:00
|
|
|
}
|