2020-06-19 11:57:15 -05:00
|
|
|
error[E0004]: non-exhaustive patterns: `(2_u8..=u8::MAX, _)` not covered
|
2019-12-27 11:53:00 -06:00
|
|
|
--> $DIR/exhaustiveness-non-exhaustive.rs:6:11
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | match (0u8, 0u8) {
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^ pattern `(2_u8..=u8::MAX, _)` not covered
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 00:44:30 -05:00
|
|
|
= note: the matched value is of type `(u8, u8)`
|
2019-11-26 08:53:54 -06:00
|
|
|
|
2020-06-19 11:57:15 -05:00
|
|
|
error[E0004]: non-exhaustive patterns: `((4_u8..=u8::MAX))` not covered
|
2019-12-27 11:53:00 -06:00
|
|
|
--> $DIR/exhaustiveness-non-exhaustive.rs:10:11
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | match ((0u8,),) {
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^ pattern `((4_u8..=u8::MAX))` not covered
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 00:44:30 -05:00
|
|
|
= note: the matched value is of type `((u8,),)`
|
2019-11-26 08:53:54 -06:00
|
|
|
|
2020-06-19 11:57:15 -05:00
|
|
|
error[E0004]: non-exhaustive patterns: `(Some(2_u8..=u8::MAX))` not covered
|
2019-12-27 11:53:00 -06:00
|
|
|
--> $DIR/exhaustiveness-non-exhaustive.rs:14:11
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
LL | match (Some(0u8),) {
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^^^ pattern `(Some(2_u8..=u8::MAX))` not covered
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 00:44:30 -05:00
|
|
|
= note: the matched value is of type `(std::option::Option<u8>,)`
|
2019-11-26 08:53:54 -06:00
|
|
|
|
2019-12-27 11:53:00 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2019-11-26 08:53:54 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0004`.
|