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

5 lines
56 B
Rust
Raw Normal View History

fn main() {
let i;
i = ~1;
assert *i == 1;
}