rust/src/test/ui/deref-non-pointer.rs
2018-12-25 21:08:33 -07:00

6 lines
90 B
Rust

fn main() {
match *1 { //~ ERROR: cannot be dereferenced
_ => { panic!(); }
}
}