rust/src/test/compile-fail/deref-non-pointer.rs
2012-08-06 15:36:30 -07:00

6 lines
91 B
Rust

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