summary refs log tree commit diff
path: root/src/test/run-pass/unique-assign-drop.rs
blob: b8728a10bd8ee9bb3a2a743932db9067cebee4c9 (plain)
1
2
3
4
5
6
7
fn main() {
    let i = ~1;
    let mut j = ~2;
    // Should drop the previous value of j
    j = i;
    assert *j == 1;
}