7 lines
89 B
Rust
7 lines
89 B
Rust
|
|
|
|
fn main() {
|
|
auto x = @rec(x=1, y=2, z=3);
|
|
auto y <- x;
|
|
assert (y.y == 2);
|
|
} |