rust/src/test/run-pass/unique-move.rs

6 lines
76 B
Rust
Raw Normal View History

fn main() {
let i = ~100;
let j;
j <- i;
assert *j == 100;
}