]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pattern/usefulness/issue-72377.stderr
Rollup merge of #101488 - notriddle:notriddle/results-table, r=GuillaumeGomez
[rust.git] / src / test / ui / pattern / usefulness / issue-72377.stderr
1 error[E0004]: non-exhaustive patterns: `(X::A, Some(X::A))`, `(X::A, Some(X::B))`, `(X::B, Some(X::B))` and 2 more not covered
2   --> $DIR/issue-72377.rs:8:11
3    |
4 LL |     match (x, y) {
5    |           ^^^^^^ patterns `(X::A, Some(X::A))`, `(X::A, Some(X::B))`, `(X::B, Some(X::B))` and 2 more not covered
6    |
7    = note: the matched value is of type `(X, Option<X>)`
8 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown, or multiple match arms
9    |
10 LL ~         (X::A, Some(X::C)) | (X::C, Some(X::A)) => false,
11 LL ~         _ => todo!(),
12    |
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0004`.