summary refs log tree commit diff
path: root/src/test/run-pass/move-2.rs
blob: 9309d718b15ec39902e2e5ce2839e04c18428699 (plain)
1
2
3


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