summary refs log tree commit diff
path: root/src/test/run-pass/unique-move-drop.rs
blob: c4031f410065c098cc61aabb4ce515c4416d2457 (plain)
1
2
3
4
5
6
fn main() {
    let i = ~100;
    let j = ~200;
    let j <- i;
    assert *j == 100;
}