2020-11-12 11:28:55 -06:00
error: unreachable pattern
--> $DIR/enum_same_crate_empty_match.rs:28:9
|
2020-11-13 17:18:55 -06:00
LL | _ => {}
2020-11-12 11:28:55 -06:00
| ^
|
note: the lint level is defined here
--> $DIR/enum_same_crate_empty_match.rs:1:9
|
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
2022-09-02 22:01:35 -05:00
error[E0004]: non-exhaustive patterns: `NonExhaustiveEnum::Unit`, `NonExhaustiveEnum::Tuple(_)` and `NonExhaustiveEnum::Struct { .. }` not covered
2019-11-30 09:51:26 -06:00
--> $DIR/enum_same_crate_empty_match.rs:33:11
|
2021-12-15 23:06:44 -06:00
LL | match NonExhaustiveEnum::Unit {}
2022-09-02 22:01:35 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonExhaustiveEnum::Unit`, `NonExhaustiveEnum::Tuple(_)` and `NonExhaustiveEnum::Struct { .. }` not covered
2019-11-30 09:51:26 -06:00
|
2021-12-15 23:06:44 -06:00
note: `NonExhaustiveEnum` defined here
--> $DIR/enum_same_crate_empty_match.rs:5:5
|
LL | pub enum NonExhaustiveEnum {
| -----------------
LL | Unit,
| ^^^^ not covered
LL |
LL | Tuple(u32),
| ^^^^^ not covered
LL |
LL | Struct { field: u32 }
| ^^^^^^ not covered
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `NonExhaustiveEnum`
2021-12-16 16:46:13 -06:00
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
2021-12-15 20:05:58 -06:00
|
LL ~ match NonExhaustiveEnum::Unit {
2022-09-02 22:01:35 -05:00
LL + NonExhaustiveEnum::Unit | NonExhaustiveEnum::Tuple(_) | NonExhaustiveEnum::Struct { .. } => todo!(),
2021-12-15 20:05:58 -06:00
LL + }
|
2019-11-30 09:51:26 -06:00
2022-09-02 22:01:35 -05:00
error[E0004]: non-exhaustive patterns: `NormalEnum::Unit`, `NormalEnum::Tuple(_)` and `NormalEnum::Struct { .. }` not covered
2019-11-30 09:51:26 -06:00
--> $DIR/enum_same_crate_empty_match.rs:35:11
|
2021-12-15 23:06:44 -06:00
LL | match NormalEnum::Unit {}
2022-09-02 22:01:35 -05:00
| ^^^^^^^^^^^^^^^^ patterns `NormalEnum::Unit`, `NormalEnum::Tuple(_)` and `NormalEnum::Struct { .. }` not covered
2021-12-15 23:06:44 -06:00
|
note: `NormalEnum` defined here
--> $DIR/enum_same_crate_empty_match.rs:14:5
2019-11-30 09:51:26 -06:00
|
2021-12-15 23:06:44 -06:00
LL | pub enum NormalEnum {
| ----------
LL | Unit,
| ^^^^ not covered
LL |
LL | Tuple(u32),
| ^^^^^ not covered
LL |
LL | Struct { field: u32 }
| ^^^^^^ not covered
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `NormalEnum`
2021-12-16 16:46:13 -06:00
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
2021-12-15 20:05:58 -06:00
|
LL ~ match NormalEnum::Unit {
2022-09-02 22:01:35 -05:00
LL + NormalEnum::Unit | NormalEnum::Tuple(_) | NormalEnum::Struct { .. } => todo!(),
2021-12-15 20:05:58 -06:00
LL + }
|
2019-11-30 09:51:26 -06:00
2020-11-12 11:28:55 -06:00
error: aborting due to 3 previous errors
2019-11-30 09:51:26 -06:00
For more information about this error, try `rustc --explain E0004`.