rust/tests/ui/pattern/usefulness/match-non-exhaustive.rs
2023-01-11 09:32:08 +00:00

5 lines
139 B
Rust

fn main() {
match 0 { 1 => () } //~ ERROR non-exhaustive patterns
match 0 { 0 if false => () } //~ ERROR non-exhaustive patterns
}