rust/tests/ui/pattern/usefulness/issue-2111.rs

12 lines
296 B
Rust

fn foo(a: Option<usize>, b: Option<usize>) {
match (a, b) {
//~^ ERROR: non-exhaustive patterns: `(None, None)` and `(Some(_), Some(_))` not covered
(Some(a), Some(b)) if a == b => {}
(Some(_), None) | (None, Some(_)) => {}
}
}
fn main() {
foo(None, None);
}