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

6 lines
86 B
Rust
Raw Normal View History

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