rust/src/test/compile-fail/deref-non-pointer.rs
2012-08-05 22:08:09 -07:00

6 lines
No EOL
89 B
Rust

// error-pattern:cannot be dereferenced
fn main() {
alt *1 {
_ => { fail; }
}
}