2011-09-23 16:58:06 -05:00
|
|
|
|
|
|
|
fn test(x: bool, foo: ~{x: int, y: int, z: int}) -> int {
|
|
|
|
let bar = foo;
|
2012-03-22 10:39:41 -05:00
|
|
|
let mut y: ~{x: int, y: int, z: int};
|
2011-09-23 16:58:06 -05:00
|
|
|
if x { y <- bar; } else { y = ~{x: 4, y: 5, z: 6}; }
|
2012-08-01 19:30:05 -05:00
|
|
|
return y.y;
|
2011-09-23 16:58:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = ~{x: 1, y: 2, z: 3};
|
|
|
|
assert (test(true, x) == 2);
|
|
|
|
assert (test(true, x) == 2);
|
|
|
|
assert (test(true, x) == 2);
|
|
|
|
assert (test(false, x) == 5);
|
|
|
|
}
|