rust/src/test/run-pass/unique-assign-copy.rs

11 lines
153 B
Rust
Raw Normal View History

fn main() {
2012-03-26 20:35:18 -05:00
let i = ~mut 1;
// Should be a copy
let mut j;
2012-12-05 18:51:32 -06:00
j = copy i;
*i = 2;
*j = 3;
assert *i == 2;
assert *j == 3;
2012-12-05 18:51:32 -06:00
}