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

3 lines
49 B
Rust
Raw Normal View History

fn main() { let @int x = @10; let int y = *x; }