]> git.proxmox.com Git - rustc.git/blame - src/test/ui/pattern/usefulness/issue-2111.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / pattern / usefulness / issue-2111.stderr
CommitLineData
fc512014
XL
1error[E0004]: non-exhaustive patterns: `(None, None)` and `(Some(_), Some(_))` not covered
2 --> $DIR/issue-2111.rs:2:11
8faf50e0 3 |
fc512014
XL
4LL | match (a, b) {
5 | ^^^^^^ patterns `(None, None)` and `(Some(_), Some(_))` not covered
532ac7d7 6 |
1b1a35ee 7 = note: the matched value is of type `(Option<usize>, Option<usize>)`
ee023bcb
FG
8help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
9 |
10LL ~ (Some(_), None) | (None, Some(_)) => {}
11LL + (None, None) | (Some(_), Some(_)) => todo!()
12 |
8faf50e0
XL
13
14error: aborting due to previous error
15
16For more information about this error, try `rustc --explain E0004`.