16 lines
259 B
Rust
16 lines
259 B
Rust
|
#![deny(unreachable_patterns)]
|
||
|
|
||
|
fn main() {
|
||
|
match "world" {
|
||
|
"hello" => {}
|
||
|
_ => {},
|
||
|
}
|
||
|
|
||
|
match "world" {
|
||
|
ref _x if false => {}
|
||
|
"hello" => {}
|
||
|
"hello" => {} //~ ERROR unreachable pattern
|
||
|
_ => {},
|
||
|
}
|
||
|
}
|