4f7ecce7d1
Issue #409
7 lines
76 B
Rust
7 lines
76 B
Rust
|
|
fn main() {
|
|
let x = ~{x: 1};
|
|
let bar = x;
|
|
assert bar.x == 1;
|
|
}
|