2020-11-12 17:28:55 +00:00
|
|
|
error: unreachable pattern
|
|
|
|
--> $DIR/match-empty.rs:47:9
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-11-12 17:28:55 +00:00
|
|
|
LL | _ => {},
|
|
|
|
| ^
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-11-12 17:28:55 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/match-empty.rs:3:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unreachable_patterns)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2020-11-12 17:28:55 +00:00
|
|
|
error: unreachable pattern
|
|
|
|
--> $DIR/match-empty.rs:50:9
|
2020-11-12 17:24:42 +00:00
|
|
|
|
|
2020-11-12 17:28:55 +00:00
|
|
|
LL | _ if false => {},
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
|
|
|
--> $DIR/match-empty.rs:57:9
|
2020-11-12 17:24:42 +00:00
|
|
|
|
|
2020-11-12 17:28:55 +00:00
|
|
|
LL | _ => {},
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
|
|
|
--> $DIR/match-empty.rs:60:9
|
|
|
|
|
|
|
|
|
LL | _ if false => {},
|
|
|
|
| ^
|
2020-11-12 17:24:42 +00:00
|
|
|
|
2019-11-30 15:51:26 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: type `u8` is non-empty
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:75:18
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | match_empty!(0u8);
|
|
|
|
| ^^^
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `u8`
|
2019-11-30 15:51:26 +00:00
|
|
|
|
2019-12-03 14:08:14 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct` is non-empty
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:77:18
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
2019-12-03 19:04:01 +00:00
|
|
|
LL | struct NonEmptyStruct(bool);
|
|
|
|
| ---------------------------- `NonEmptyStruct` defined here
|
|
|
|
...
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | match_empty!(NonEmptyStruct(true));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyStruct`
|
2019-11-30 15:51:26 +00:00
|
|
|
|
2019-12-03 14:08:14 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion1` is non-empty
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:79:18
|
2019-12-03 14:07:14 +00:00
|
|
|
|
|
2019-12-03 19:04:01 +00:00
|
|
|
LL | / union NonEmptyUnion1 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion1` defined here
|
|
|
|
...
|
|
|
|
LL | match_empty!((NonEmptyUnion1 { foo: () }));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-12-03 14:07:14 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyUnion1`
|
2019-12-03 14:07:14 +00:00
|
|
|
|
2019-12-03 14:08:14 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion2` is non-empty
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:81:18
|
2019-12-03 14:07:14 +00:00
|
|
|
|
|
2019-12-03 19:04:01 +00:00
|
|
|
LL | / union NonEmptyUnion2 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | bar: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion2` defined here
|
|
|
|
...
|
|
|
|
LL | match_empty!((NonEmptyUnion2 { foo: () }));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-12-03 14:07:14 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyUnion2`
|
2019-12-03 14:07:14 +00:00
|
|
|
|
2019-12-03 16:58:04 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `Foo(_)` not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:83:18
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum1 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 16:58:04 +00:00
|
|
|
| | --- not covered
|
2019-12-03 16:15:25 +00:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-11-30 15:51:26 +00:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum1` defined here
|
|
|
|
...
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | match_empty!(NonEmptyEnum1::Foo(true));
|
2019-12-03 16:58:04 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `Foo(_)` not covered
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum1`
|
2019-11-30 15:51:26 +00:00
|
|
|
|
2019-12-03 16:58:04 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `Foo(_)` and `Bar` not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:85:18
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum2 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 16:58:04 +00:00
|
|
|
| | --- not covered
|
2019-12-03 16:15:25 +00:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-11-30 15:51:26 +00:00
|
|
|
LL | | Bar,
|
2019-12-03 16:58:04 +00:00
|
|
|
| | --- not covered
|
2019-12-03 16:15:25 +00:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-11-30 15:51:26 +00:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum2` defined here
|
|
|
|
...
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | match_empty!(NonEmptyEnum2::Foo(true));
|
2019-12-03 16:58:04 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `Foo(_)` and `Bar` not covered
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum2`
|
2019-11-30 15:51:26 +00:00
|
|
|
|
2019-12-03 16:58:04 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `V1`, `V2`, `V3` and 2 more not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:87:18
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum5 {
|
|
|
|
LL | | V1, V2, V3, V4, V5,
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum5` defined here
|
|
|
|
...
|
|
|
|
LL | match_empty!(NonEmptyEnum5::V1);
|
2019-12-03 16:58:04 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ patterns `V1`, `V2`, `V3` and 2 more not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum5`
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2019-12-11 18:17:58 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `_` not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:90:18
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | match_false!(0u8);
|
2019-12-11 18:17:58 +00:00
|
|
|
| ^^^ pattern `_` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `u8`
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2019-12-03 16:15:25 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `NonEmptyStruct(_)` not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:92:18
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | struct NonEmptyStruct(bool);
|
|
|
|
| ---------------------------- `NonEmptyStruct` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!(NonEmptyStruct(true));
|
2019-12-03 16:15:25 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyStruct(_)` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyStruct`
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2019-12-03 16:15:25 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `NonEmptyUnion1 { .. }` not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:94:18
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / union NonEmptyUnion1 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion1` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!((NonEmptyUnion1 { foo: () }));
|
2019-12-03 16:15:25 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion1 { .. }` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyUnion1`
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2019-12-03 16:15:25 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `NonEmptyUnion2 { .. }` not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:96:18
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / union NonEmptyUnion2 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | bar: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion2` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!((NonEmptyUnion2 { foo: () }));
|
2019-12-03 16:15:25 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion2 { .. }` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyUnion2`
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2019-12-03 16:15:25 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `Foo(_)` not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:98:18
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum1 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 16:15:25 +00:00
|
|
|
| | --- not covered
|
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum1` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!(NonEmptyEnum1::Foo(true));
|
2019-12-03 16:15:25 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `Foo(_)` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum1`
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2019-12-03 16:15:25 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `Foo(_)` and `Bar` not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:100:18
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum2 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 16:15:25 +00:00
|
|
|
| | --- not covered
|
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | | Bar,
|
2019-12-03 16:15:25 +00:00
|
|
|
| | --- not covered
|
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum2` defined here
|
|
|
|
...
|
|
|
|
LL | match_false!(NonEmptyEnum2::Foo(true));
|
2019-12-03 16:15:25 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `Foo(_)` and `Bar` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum2`
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2019-12-03 16:15:25 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `V1`, `V2`, `V3` and 2 more not covered
|
2020-11-12 17:28:55 +00:00
|
|
|
--> $DIR/match-empty.rs:102:18
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum5 {
|
|
|
|
LL | | V1, V2, V3, V4, V5,
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum5` defined here
|
|
|
|
...
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | match_false!(NonEmptyEnum5::V1);
|
2019-12-03 16:15:25 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ patterns `V1`, `V2`, `V3` and 2 more not covered
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum5`
|
2019-11-30 15:51:26 +00:00
|
|
|
|
2020-11-12 17:28:55 +00:00
|
|
|
error: aborting due to 18 previous errors
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0004`.
|