summary refs log tree commit diff
path: root/src/test/ui/or-patterns/exhaustiveness-non-exhaustive.stderr
blob: d3ae798ead5a793eee0fb50027533f506110f938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
error[E0004]: non-exhaustive patterns: `(2_u8..=u8::MAX, _)` not covered
  --> $DIR/exhaustiveness-non-exhaustive.rs:6:11
   |
LL |     match (0u8, 0u8) {
   |           ^^^^^^^^^^ pattern `(2_u8..=u8::MAX, _)` not covered
   |
   = help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
   = note: the matched value is of type `(u8, u8)`

error[E0004]: non-exhaustive patterns: `((4_u8..=u8::MAX))` not covered
  --> $DIR/exhaustiveness-non-exhaustive.rs:10:11
   |
LL |     match ((0u8,),) {
   |           ^^^^^^^^^ pattern `((4_u8..=u8::MAX))` not covered
   |
   = help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
   = note: the matched value is of type `((u8,),)`

error[E0004]: non-exhaustive patterns: `(Some(2_u8..=u8::MAX))` not covered
  --> $DIR/exhaustiveness-non-exhaustive.rs:14:11
   |
LL |     match (Some(0u8),) {
   |           ^^^^^^^^^^^^ pattern `(Some(2_u8..=u8::MAX))` not covered
   |
   = help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
   = note: the matched value is of type `(Option<u8>,)`

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0004`.