2019-12-04 16:04:44 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: type `uninhabited::IndirectUninhabitedEnum` is non-empty
|
2019-10-13 03:17:00 +02:00
|
|
|
--> $DIR/indirect_match.rs:18:11
|
2019-05-04 12:07:04 +01:00
|
|
|
|
|
|
|
|
LL | match x {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
2019-12-04 16:04:44 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: type `uninhabited::IndirectUninhabitedStruct` is non-empty
|
2019-10-13 03:17:00 +02:00
|
|
|
--> $DIR/indirect_match.rs:22:11
|
2019-05-04 12:07:04 +01:00
|
|
|
|
|
|
|
|
LL | match x {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
2019-12-04 16:04:44 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: type `uninhabited::IndirectUninhabitedTupleStruct` is non-empty
|
2019-10-13 03:17:00 +02:00
|
|
|
--> $DIR/indirect_match.rs:26:11
|
2019-05-04 12:07:04 +01:00
|
|
|
|
|
|
|
|
LL | match x {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
2019-12-04 16:04:44 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: type `uninhabited::IndirectUninhabitedVariants` is non-empty
|
2019-10-13 03:17:00 +02:00
|
|
|
--> $DIR/indirect_match.rs:32:11
|
2019-05-04 12:07:04 +01:00
|
|
|
|
|
|
|
|
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`.
|