os-rust/tests/ui/pattern/usefulness/match-non-exhaustive.rs

6 lines
209 B
Rust
Raw Permalink Normal View History

fn main() {
2015-01-31 17:23:42 +01:00
match 0 { 1 => () } //~ ERROR non-exhaustive patterns
match 0 { 0 if false => () } //~ ERROR non-exhaustive patterns
//-| NOTE match arms with guards don't count towards exhaustivity
}