rust/src/test/ui/error-codes/E0001.rs
2018-12-25 21:08:33 -07:00

10 lines
205 B
Rust

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