2020-11-12 17:28:55 +00:00
|
|
|
error: unreachable pattern
|
2020-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:37: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
|
2020-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:8:9
|
2020-11-12 17:28:55 +00:00
|
|
|
|
|
|
|
|
LL | #![deny(unreachable_patterns)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2020-11-12 17:28:55 +00:00
|
|
|
error: unreachable pattern
|
2020-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:40:9
|
2020-11-12 17:24:42 +00:00
|
|
|
|
|
2020-11-12 17:28:55 +00:00
|
|
|
LL | _ if false => {},
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2020-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:47:9
|
2020-11-12 17:24:42 +00:00
|
|
|
|
|
2020-11-12 17:28:55 +00:00
|
|
|
LL | _ => {},
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2020-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:50:9
|
2020-11-16 21:13:00 +00:00
|
|
|
|
|
|
|
|
LL | _ if false => {},
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2020-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:57:9
|
2020-11-16 21:13:00 +00:00
|
|
|
|
|
|
|
|
LL | _ => {},
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2020-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:60:9
|
2020-11-12 17:28:55 +00:00
|
|
|
|
|
|
|
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:78:20
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_no_arms!(0u8);
|
|
|
|
| ^^^
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `u8`
|
2021-12-16 02:05:58 +00:00
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2019-11-30 15:51:26 +00:00
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct1` is non-empty
|
|
|
|
--> $DIR/empty-match.rs:79:20
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | struct NonEmptyStruct1;
|
|
|
|
| ----------------------- `NonEmptyStruct1` defined here
|
2019-12-03 19:04:01 +00:00
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_no_arms!(NonEmptyStruct1);
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
= note: the matched value is of type `NonEmptyStruct1`
|
2021-12-16 02:05:58 +00:00
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2020-12-02 23:11:29 +00:00
|
|
|
|
|
|
|
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct2` is non-empty
|
|
|
|
--> $DIR/empty-match.rs:80:20
|
|
|
|
|
|
|
|
|
LL | struct NonEmptyStruct2(bool);
|
|
|
|
| ----------------------------- `NonEmptyStruct2` defined here
|
|
|
|
...
|
|
|
|
LL | match_no_arms!(NonEmptyStruct2(true));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: the matched value is of type `NonEmptyStruct2`
|
2021-12-16 02:05:58 +00:00
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:81:20
|
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
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_no_arms!((NonEmptyUnion1 { foo: () }));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-12-03 14:07:14 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyUnion1`
|
2021-12-16 02:05:58 +00:00
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:82:20
|
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
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_no_arms!((NonEmptyUnion2 { foo: () }));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-12-03 14:07:14 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyUnion2`
|
2021-12-16 02:05:58 +00:00
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:83:20
|
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-11-30 15:51:26 +00:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum1` defined here
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_no_arms!(NonEmptyEnum1::Foo(true));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `Foo(_)` not covered
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum1`
|
2021-12-16 02:05:58 +00:00
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:84:20
|
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-11-30 15:51:26 +00:00
|
|
|
LL | | Bar,
|
2019-12-03 16:58:04 +00:00
|
|
|
| | --- not covered
|
2019-11-30 15:51:26 +00:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum2` defined here
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_no_arms!(NonEmptyEnum2::Foo(true));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `Foo(_)` and `Bar` not covered
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum2`
|
2021-12-16 02:05:58 +00:00
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:85:20
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum5 {
|
|
|
|
LL | | V1, V2, V3, V4, V5,
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum5` defined here
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_no_arms!(NonEmptyEnum5::V1);
|
|
|
|
| ^^^^^^^^^^^^^^^^^ patterns `V1`, `V2`, `V3` and 2 more not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum5`
|
2021-12-16 02:05:58 +00:00
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2019-12-11 18:17:58 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `_` not covered
|
2020-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:87:24
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_guarded_arm!(0u8);
|
|
|
|
| ^^^ pattern `_` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `u8`
|
2021-12-16 02:14:17 +00:00
|
|
|
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
|
LL ~ _ if false => {}
|
|
|
|
LL + _ => todo!()
|
|
|
|
|
|
2019-12-03 15:57:04 +00:00
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
error[E0004]: non-exhaustive patterns: `NonEmptyStruct1` not covered
|
|
|
|
--> $DIR/empty-match.rs:88:24
|
|
|
|
|
|
|
|
|
LL | struct NonEmptyStruct1;
|
|
|
|
| ----------------------- `NonEmptyStruct1` defined here
|
|
|
|
...
|
|
|
|
LL | match_guarded_arm!(NonEmptyStruct1);
|
|
|
|
| ^^^^^^^^^^^^^^^ pattern `NonEmptyStruct1` not covered
|
|
|
|
|
|
|
|
|
= note: the matched value is of type `NonEmptyStruct1`
|
2021-12-16 02:14:17 +00:00
|
|
|
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
|
LL ~ _ if false => {}
|
|
|
|
LL + NonEmptyStruct1 => todo!()
|
|
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
|
|
|
|
error[E0004]: non-exhaustive patterns: `NonEmptyStruct2(_)` not covered
|
|
|
|
--> $DIR/empty-match.rs:89:24
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | struct NonEmptyStruct2(bool);
|
|
|
|
| ----------------------------- `NonEmptyStruct2` defined here
|
2019-12-03 15:57:04 +00:00
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_guarded_arm!(NonEmptyStruct2(true));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyStruct2(_)` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
= note: the matched value is of type `NonEmptyStruct2`
|
2021-12-16 02:14:17 +00:00
|
|
|
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
|
LL ~ _ if false => {}
|
|
|
|
LL + NonEmptyStruct2(_) => todo!()
|
|
|
|
|
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:90:24
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / union NonEmptyUnion1 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion1` defined here
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_guarded_arm!((NonEmptyUnion1 { foo: () }));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion1 { .. }` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyUnion1`
|
2021-12-16 02:14:17 +00:00
|
|
|
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
|
LL ~ _ if false => {}
|
|
|
|
LL + NonEmptyUnion1 { .. } => todo!()
|
|
|
|
|
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:91:24
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / union NonEmptyUnion2 {
|
|
|
|
LL | | foo: (),
|
|
|
|
LL | | bar: (),
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyUnion2` defined here
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_guarded_arm!((NonEmptyUnion2 { foo: () }));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion2 { .. }` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyUnion2`
|
2021-12-16 02:14:17 +00:00
|
|
|
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
|
LL ~ _ if false => {}
|
|
|
|
LL + NonEmptyUnion2 { .. } => todo!()
|
|
|
|
|
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:92:24
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum1 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 16:15:25 +00:00
|
|
|
| | --- not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum1` defined here
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_guarded_arm!(NonEmptyEnum1::Foo(true));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `Foo(_)` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum1`
|
2021-12-16 02:14:17 +00:00
|
|
|
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
|
LL ~ _ if false => {}
|
|
|
|
LL + Foo(_) => todo!()
|
|
|
|
|
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:93:24
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum2 {
|
|
|
|
LL | | Foo(bool),
|
2019-12-03 16:15:25 +00:00
|
|
|
| | --- not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | | Bar,
|
2019-12-03 16:15:25 +00:00
|
|
|
| | --- not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum2` defined here
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_guarded_arm!(NonEmptyEnum2::Foo(true));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `Foo(_)` and `Bar` not covered
|
2019-12-03 15:57:04 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum2`
|
2021-12-16 02:14:17 +00:00
|
|
|
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
|
LL ~ _ if false => {}
|
|
|
|
LL + Foo(_) | Bar => todo!()
|
|
|
|
|
|
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-12-02 23:11:29 +00:00
|
|
|
--> $DIR/empty-match.rs:94:24
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
|
LL | / enum NonEmptyEnum5 {
|
|
|
|
LL | | V1, V2, V3, V4, V5,
|
|
|
|
LL | | }
|
|
|
|
| |_- `NonEmptyEnum5` defined here
|
|
|
|
...
|
2020-12-02 23:11:29 +00:00
|
|
|
LL | match_guarded_arm!(NonEmptyEnum5::V1);
|
|
|
|
| ^^^^^^^^^^^^^^^^^ patterns `V1`, `V2`, `V3` and 2 more not covered
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
2020-03-27 05:44:30 +00:00
|
|
|
= note: the matched value is of type `NonEmptyEnum5`
|
2021-12-16 02:14:17 +00:00
|
|
|
help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
|
|
|
|
|
LL ~ _ if false => {}
|
|
|
|
LL + _ => todo!()
|
|
|
|
|
|
2019-11-30 15:51:26 +00:00
|
|
|
|
2020-12-02 23:11:29 +00:00
|
|
|
error: aborting due to 22 previous errors
|
2019-11-30 15:51:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0004`.
|