rust/tests/ui/error-codes/E0001.rs

11 lines
205 B
Rust

#![deny(unreachable_patterns)]
fn main() {
let foo = Some(1);
match foo {
Some(_) => {/* ... */}
None => {/* ... */}
_ => {/* ... */} //~ ERROR unreachable pattern
}
}