4 lines
76 B
Rust
4 lines
76 B
Rust
|
|
||
|
|
||
|
fn main() { let x = ~{x: 1, y: 2, z: 3}; let y <- x; assert (y.y == 2); }
|