]> git.proxmox.com Git - rustc.git/blame - src/test/ui/pattern/usefulness/issue-3096-2.stderr
New upstream version 1.61.0+dfsg1
[rustc.git] / src / test / ui / pattern / usefulness / issue-3096-2.stderr
CommitLineData
0731742a
XL
1error[E0004]: non-exhaustive patterns: type `*const Bottom` is non-empty
2 --> $DIR/issue-3096-2.rs:5:11
8faf50e0 3 |
532ac7d7 4LL | match x { }
8faf50e0
XL
5 | ^
6 |
ba9703b0 7 = note: the matched value is of type `*const Bottom`
ee023bcb
FG
8help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
9 |
10LL ~ match x {
11LL + _ => todo!(),
12LL ~ }
13 |
8faf50e0
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0004`.