rust/src/test/run-pass/move-2.rs

7 lines
89 B
Rust
Raw Normal View History

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