]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pattern/usefulness/match-non-exhaustive.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / pattern / usefulness / match-non-exhaustive.stderr
1 error[E0004]: non-exhaustive patterns: `i32::MIN..=0_i32` and `2_i32..=i32::MAX` not covered
2   --> $DIR/match-non-exhaustive.rs:2:11
3    |
4 LL |     match 0 { 1 => () }
5    |           ^ patterns `i32::MIN..=0_i32` and `2_i32..=i32::MAX` not covered
6    |
7    = note: the matched value is of type `i32`
8 help: 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    |
10 LL |     match 0 { 1 => (), i32::MIN..=0_i32 | 2_i32..=i32::MAX => todo!() }
11    |                      ++++++++++++++++++++++++++++++++++++++++++++++++
12
13 error[E0004]: non-exhaustive patterns: `_` not covered
14   --> $DIR/match-non-exhaustive.rs:3:11
15    |
16 LL |     match 0 { 0 if false => () }
17    |           ^ pattern `_` not covered
18    |
19    = note: the matched value is of type `i32`
20 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
21    |
22 LL |     match 0 { 0 if false => (), _ => todo!() }
23    |                               ++++++++++++++
24
25 error: aborting due to 2 previous errors
26
27 For more information about this error, try `rustc --explain E0004`.