]> git.proxmox.com Git - rustc.git/blame - src/test/ui/pattern/usefulness/match-non-exhaustive.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / pattern / usefulness / match-non-exhaustive.stderr
CommitLineData
f035d41b 1error[E0004]: non-exhaustive patterns: `i32::MIN..=0_i32` and `2_i32..=i32::MAX` not covered
0731742a 2 --> $DIR/match-non-exhaustive.rs:2:11
b7449926 3 |
532ac7d7 4LL | match 0 { 1 => () }
f035d41b 5 | ^ patterns `i32::MIN..=0_i32` and `2_i32..=i32::MAX` not covered
532ac7d7 6 |
ba9703b0 7 = note: the matched value is of type `i32`
ee023bcb
FG
8help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
9 |
10LL | match 0 { 1 => (), i32::MIN..=0_i32 | 2_i32..=i32::MAX => todo!() }
11 | ++++++++++++++++++++++++++++++++++++++++++++++++
b7449926
XL
12
13error[E0004]: non-exhaustive patterns: `_` not covered
0731742a 14 --> $DIR/match-non-exhaustive.rs:3:11
b7449926 15 |
532ac7d7 16LL | match 0 { 0 if false => () }
b7449926 17 | ^ pattern `_` not covered
532ac7d7 18 |
ba9703b0 19 = note: the matched value is of type `i32`
ee023bcb
FG
20help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
21 |
22LL | match 0 { 0 if false => (), _ => todo!() }
23 | ++++++++++++++
b7449926
XL
24
25error: aborting due to 2 previous errors
26
27For more information about this error, try `rustc --explain E0004`.