6 lines
91 B
Rust
6 lines
91 B
Rust
// error-pattern:cannot be dereferenced
|
|
fn main() {
|
|
match *1 {
|
|
_ => { fail; }
|
|
}
|
|
} |