7 lines
123 B
Rust
7 lines
123 B
Rust
fn main() {
|
|
let i = ~1;
|
|
let mut j = ~2;
|
|
// Should drop the previous value of j
|
|
j = i;
|
|
assert *j == 1;
|
|
} |