2019-12-03 09:57:04 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `_` not covered
|
2019-12-03 10:15:25 -06:00
|
|
|
--> $DIR/match-empty.rs:45:18
|
2019-12-03 09:57:04 -06:00
|
|
|
|
|
|
|
|
LL | enum Foo {}
|
|
|
|
| ----------- `Foo` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!(x); // Not detected as unreachable nor exhaustive.
|
|
|
|
| ^ pattern `_` not covered
|
|
|
|
|
|
|
|
|
= 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 `Foo`
|
2019-12-03 09:57:04 -06:00
|
|
|
|
2019-11-30 09:51:26 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: type `u8` is non-empty
|
2019-12-03 10:15:25 -06:00
|
|
|
--> $DIR/match-empty.rs:63:18
|
2019-11-30 09:51:26 -06:00
|
|
|
|
|
2019-12-03 09:57:04 -06:00
|
|
|
LL | match_empty!(0u8);
|
|
|
|
| ^^^
|
2019-11-30 09:51:26 -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-30 09:51:26 -06:00
|
|
|
|
2019-12-03 08:08:14 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct` is non-empty
|
2019-12-03 10:15:25 -06:00
|
|
|
--> $DIR/match-empty.rs:65:18
|
2019-11-30 09:51:26 -06:00
|
|
|
|
|
2019-12-03 13:04:01 -06:00
|
|
|
LL | struct NonEmptyStruct(bool);
|
|
|
|
| ---------------------------- `NonEmptyStruct` defined here
|
|
|
|
...
|
2019-12-03 09:57:04 -06:00
|
|
|
LL | match_empty!(NonEmptyStruct(true));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-11-30 09:51:26 -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 `NonEmptyStruct`
|
2019-11-30 09:51:26 -06:00
|
|
|
|
2019-12-03 08:08:14 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion1` is non-empty
|
2019-12-03 10:15:25 -06:00
|
|
|
--> $DIR/match-empty.rs:67:18
|
2019-12-03 08:07:14 -06:00
|
|
|
|
|
2019-12-03 13:04:01 -06:00
|
|
|
LL | / union NonEmptyUnion1 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion1` defined here
|
|
|
|
...
|
|
|
|
LL | match_empty!((NonEmptyUnion1 { foo: () }));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-12-03 08:07:14 -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 `NonEmptyUnion1`
|
2019-12-03 08:07:14 -06:00
|
|
|
|
2019-12-03 08:08:14 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion2` is non-empty
|
2019-12-03 10:15:25 -06:00
|
|
|
--> $DIR/match-empty.rs:69:18
|
2019-12-03 08:07:14 -06:00
|
|
|
|
|
2019-12-03 13:04:01 -06:00
|
|
|
LL | / union NonEmptyUnion2 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | bar: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion2` defined here
|
|
|
|
...
|
|
|
|
LL | match_empty!((NonEmptyUnion2 { foo: () }));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-12-03 08:07:14 -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 `NonEmptyUnion2`
|
2019-12-03 08:07:14 -06:00
|
|
|
|
2019-12-03 10:58:04 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `Foo(_)` not covered
|
2019-12-03 10:15:25 -06:00
|
|
|
--> $DIR/match-empty.rs:71:18
|
2019-11-30 09:51:26 -06:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum1 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 10:58:04 -06:00
|
|
|
| | --- not covered
|
2019-12-03 10:15:25 -06:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-11-30 09:51:26 -06:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum1` defined here
|
|
|
|
...
|
2019-12-03 09:57:04 -06:00
|
|
|
LL | match_empty!(NonEmptyEnum1::Foo(true));
|
2019-12-03 10:58:04 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `Foo(_)` not covered
|
2019-11-30 09:51:26 -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 `NonEmptyEnum1`
|
2019-11-30 09:51:26 -06:00
|
|
|
|
2019-12-03 10:58:04 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `Foo(_)` and `Bar` not covered
|
2019-12-03 10:15:25 -06:00
|
|
|
--> $DIR/match-empty.rs:73:18
|
2019-11-30 09:51:26 -06:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum2 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 10:58:04 -06:00
|
|
|
| | --- not covered
|
2019-12-03 10:15:25 -06:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-11-30 09:51:26 -06:00
|
|
|
LL | | Bar,
|
2019-12-03 10:58:04 -06:00
|
|
|
| | --- not covered
|
2019-12-03 10:15:25 -06:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-11-30 09:51:26 -06:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum2` defined here
|
|
|
|
...
|
2019-12-03 09:57:04 -06:00
|
|
|
LL | match_empty!(NonEmptyEnum2::Foo(true));
|
2019-12-03 10:58:04 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `Foo(_)` and `Bar` not covered
|
2019-11-30 09:51:26 -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 `NonEmptyEnum2`
|
2019-11-30 09:51:26 -06:00
|
|
|
|
2019-12-03 10:58:04 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `V1`, `V2`, `V3` and 2 more not covered
|
2019-12-03 10:15:25 -06:00
|
|
|
--> $DIR/match-empty.rs:75:18
|
2019-12-03 09:57:04 -06:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum5 {
|
|
|
|
LL | | V1, V2, V3, V4, V5,
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum5` defined here
|
|
|
|
...
|
|
|
|
LL | match_empty!(NonEmptyEnum5::V1);
|
2019-12-03 10:58:04 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^ patterns `V1`, `V2`, `V3` and 2 more not covered
|
2019-12-03 09:57:04 -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 `NonEmptyEnum5`
|
2019-12-03 09:57:04 -06:00
|
|
|
|
2019-12-11 12:17:58 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `_` not covered
|
2019-12-03 10:15:25 -06:00
|
|
|
--> $DIR/match-empty.rs:78:18
|
2019-12-03 09:57:04 -06:00
|
|
|
|
|
|
|
|
LL | match_false!(0u8);
|
2019-12-11 12:17:58 -06:00
|
|
|
| ^^^ pattern `_` not covered
|
2019-12-03 09:57:04 -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-12-03 09:57:04 -06:00
|
|
|
|
2019-12-03 10:15:25 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `NonEmptyStruct(_)` not covered
|
|
|
|
--> $DIR/match-empty.rs:80:18
|
2019-12-03 09:57:04 -06:00
|
|
|
|
|
|
|
|
LL | struct NonEmptyStruct(bool);
|
|
|
|
| ---------------------------- `NonEmptyStruct` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!(NonEmptyStruct(true));
|
2019-12-03 10:15:25 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyStruct(_)` not covered
|
2019-12-03 09:57:04 -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 `NonEmptyStruct`
|
2019-12-03 09:57:04 -06:00
|
|
|
|
2019-12-03 10:15:25 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `NonEmptyUnion1 { .. }` not covered
|
|
|
|
--> $DIR/match-empty.rs:82:18
|
2019-12-03 09:57:04 -06:00
|
|
|
|
|
|
|
|
LL | / union NonEmptyUnion1 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion1` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!((NonEmptyUnion1 { foo: () }));
|
2019-12-03 10:15:25 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion1 { .. }` not covered
|
2019-12-03 09:57:04 -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 `NonEmptyUnion1`
|
2019-12-03 09:57:04 -06:00
|
|
|
|
2019-12-03 10:15:25 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `NonEmptyUnion2 { .. }` not covered
|
|
|
|
--> $DIR/match-empty.rs:84:18
|
2019-12-03 09:57:04 -06:00
|
|
|
|
|
|
|
|
LL | / union NonEmptyUnion2 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | bar: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion2` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!((NonEmptyUnion2 { foo: () }));
|
2019-12-03 10:15:25 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion2 { .. }` not covered
|
2019-12-03 09:57:04 -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 `NonEmptyUnion2`
|
2019-12-03 09:57:04 -06:00
|
|
|
|
2019-12-03 10:15:25 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `Foo(_)` not covered
|
|
|
|
--> $DIR/match-empty.rs:86:18
|
2019-12-03 09:57:04 -06:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum1 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 10:15:25 -06:00
|
|
|
| | --- not covered
|
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-12-03 09:57:04 -06:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum1` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!(NonEmptyEnum1::Foo(true));
|
2019-12-03 10:15:25 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `Foo(_)` not covered
|
2019-12-03 09:57:04 -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 `NonEmptyEnum1`
|
2019-12-03 09:57:04 -06:00
|
|
|
|
2019-12-03 10:15:25 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `Foo(_)` and `Bar` not covered
|
|
|
|
--> $DIR/match-empty.rs:88:18
|
2019-12-03 09:57:04 -06:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum2 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 10:15:25 -06:00
|
|
|
| | --- not covered
|
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-12-03 09:57:04 -06:00
|
|
|
LL | | Bar,
|
2019-12-03 10:15:25 -06:00
|
|
|
| | --- not covered
|
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-12-03 09:57:04 -06:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum2` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!(NonEmptyEnum2::Foo(true));
|
2019-12-03 10:15:25 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `Foo(_)` and `Bar` not covered
|
2019-12-03 09:57:04 -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 `NonEmptyEnum2`
|
2019-12-03 09:57:04 -06:00
|
|
|
|
2019-12-03 10:15:25 -06:00
|
|
|
error[E0004]: non-exhaustive patterns: `V1`, `V2`, `V3` and 2 more not covered
|
|
|
|
--> $DIR/match-empty.rs:90:18
|
2019-11-30 09:51:26 -06:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum5 {
|
|
|
|
LL | | V1, V2, V3, V4, V5,
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum5` defined here
|
|
|
|
...
|
2019-12-03 09:57:04 -06:00
|
|
|
LL | match_false!(NonEmptyEnum5::V1);
|
2019-12-03 10:15:25 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^ patterns `V1`, `V2`, `V3` and 2 more not covered
|
2019-11-30 09:51:26 -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 `NonEmptyEnum5`
|
2019-11-30 09:51:26 -06:00
|
|
|
|
2019-12-03 09:57:04 -06:00
|
|
|
error: aborting due to 15 previous errors
|
2019-11-30 09:51:26 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0004`.
|