rust/src/test/run-pass/move-2.rs
2011-07-26 14:49:40 +02:00

7 lines
89 B
Rust

fn main() {
auto x = @rec(x=1, y=2, z=3);
auto y <- x;
assert (y.y == 2);
}