2019-05-04 06:07:04 -05:00
|
|
|
error[E0004]: non-exhaustive patterns: pattern `IndirectUninhabitedEnum` of type `IndirectUninhabitedEnum` is not handled
|
2019-10-12 20:17:00 -05:00
|
|
|
--> $DIR/indirect_match_same_crate.rs:32:11
|
2019-05-04 06:07:04 -05:00
|
|
|
|
|
|
|
|
LL | pub struct IndirectUninhabitedEnum(UninhabitedEnum);
|
|
|
|
| ----------------------------------------------------
|
|
|
|
| | |
|
|
|
|
| | variant not covered
|
|
|
|
| `IndirectUninhabitedEnum` defined here
|
|
|
|
...
|
|
|
|
LL | match x {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
error[E0004]: non-exhaustive patterns: pattern `IndirectUninhabitedStruct` of type `IndirectUninhabitedStruct` is not handled
|
2019-10-12 20:17:00 -05:00
|
|
|
--> $DIR/indirect_match_same_crate.rs:36:11
|
2019-05-04 06:07:04 -05:00
|
|
|
|
|
|
|
|
LL | pub struct IndirectUninhabitedStruct(UninhabitedStruct);
|
|
|
|
| --------------------------------------------------------
|
|
|
|
| | |
|
|
|
|
| | variant not covered
|
|
|
|
| `IndirectUninhabitedStruct` defined here
|
|
|
|
...
|
|
|
|
LL | match x {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
error[E0004]: non-exhaustive patterns: pattern `IndirectUninhabitedTupleStruct` of type `IndirectUninhabitedTupleStruct` is not handled
|
2019-10-12 20:17:00 -05:00
|
|
|
--> $DIR/indirect_match_same_crate.rs:40:11
|
2019-05-04 06:07:04 -05:00
|
|
|
|
|
|
|
|
LL | pub struct IndirectUninhabitedTupleStruct(UninhabitedTupleStruct);
|
|
|
|
| ------------------------------------------------------------------
|
|
|
|
| | |
|
|
|
|
| | variant not covered
|
|
|
|
| `IndirectUninhabitedTupleStruct` defined here
|
|
|
|
...
|
|
|
|
LL | match x {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
error[E0004]: non-exhaustive patterns: pattern `IndirectUninhabitedVariants` of type `IndirectUninhabitedVariants` is not handled
|
2019-10-12 20:17:00 -05:00
|
|
|
--> $DIR/indirect_match_same_crate.rs:46:11
|
2019-05-04 06:07:04 -05:00
|
|
|
|
|
|
|
|
LL | pub struct IndirectUninhabitedVariants(UninhabitedVariants);
|
|
|
|
| ------------------------------------------------------------
|
|
|
|
| | |
|
|
|
|
| | variant not covered
|
|
|
|
| `IndirectUninhabitedVariants` defined here
|
|
|
|
...
|
|
|
|
LL | match x {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0004`.
|