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}; }
|
2011-07-26 07:49:40 -05:00
|
|
|
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};
|
2011-10-21 06:14:28 -05:00
|
|
|
uint::range(0u, 10000u) {|i|
|
2011-05-31 18:11:30 -05:00
|
|
|
assert (test(true, x) == 2);
|
2011-10-21 06:14:28 -05:00
|
|
|
};
|
2011-05-31 18:11:30 -05:00
|
|
|
assert (test(false, x) == 5);
|
2011-08-15 23:54:52 -05:00
|
|
|
}
|