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