mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
205 B
Rust
11 lines
205 B
Rust
#![deny(unreachable_patterns)]
|
|
|
|
fn main() {
|
|
let foo = Some(1);
|
|
match foo {
|
|
Some(_) => {/* ... */}
|
|
None => {/* ... */}
|
|
_ => {/* ... */} //~ ERROR unreachable pattern
|
|
}
|
|
}
|