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