rust/src/test/run-pass/box.rs

5 lines
56 B
Rust
Raw Normal View History

2010-12-02 17:02:17 -06:00
fn main() {
let @int x = @10;
check ((*x) == 10);
}