268a9fe5fb
Issue #409
9 lines
140 B
Rust
9 lines
140 B
Rust
fn main() {
|
|
let i = ~mutable 1;
|
|
// Should be a copy
|
|
let j = i;
|
|
*i = 2;
|
|
*j = 3;
|
|
assert *i == 2;
|
|
assert *j == 3;
|
|
} |