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