rust/src/test/compile-fail/deref-non-pointer.rs

6 lines
86 B
Rust

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