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

4 lines
76 B
Rust
Raw Normal View History

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