mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
Rollup merge of #111951 - cjgillot:uninh-comment, r=Nadrieril
Correct comment on privately uninhabited pattern. Follow-up to https://github.com/rust-lang/rust/pull/111624#discussion_r1204767933 r? `@Nadrieril`
This commit is contained in:
commit
dd74ae0929
@ -491,8 +491,8 @@ impl<'p, 'tcx> MatchVisitor<'_, 'p, 'tcx> {
|
|||||||
AdtDefinedHere { adt_def_span, ty, variants }
|
AdtDefinedHere { adt_def_span, ty, variants }
|
||||||
};
|
};
|
||||||
|
|
||||||
// Emit an extra note if the first uncovered witness is
|
// Emit an extra note if the first uncovered witness would be uninhabited
|
||||||
// visibly uninhabited anywhere in the current crate.
|
// if we disregard visibility.
|
||||||
let witness_1_is_privately_uninhabited =
|
let witness_1_is_privately_uninhabited =
|
||||||
if cx.tcx.features().exhaustive_patterns
|
if cx.tcx.features().exhaustive_patterns
|
||||||
&& let Some(witness_1) = witnesses.get(0)
|
&& let Some(witness_1) = witnesses.get(0)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:37:9
|
--> $DIR/empty-match.rs:58:9
|
||||||
|
|
|
|
||||||
LL | _ => {},
|
LL | _ => {},
|
||||||
| ^
|
| ^
|
||||||
@ -11,37 +11,52 @@ LL | #![deny(unreachable_patterns)]
|
|||||||
| ^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:40:9
|
--> $DIR/empty-match.rs:61:9
|
||||||
|
|
|
|
||||||
LL | _ if false => {},
|
LL | _ if false => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:47:9
|
--> $DIR/empty-match.rs:68:9
|
||||||
|
|
|
|
||||||
LL | _ => {},
|
LL | _ => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:50:9
|
--> $DIR/empty-match.rs:71:9
|
||||||
|
|
|
|
||||||
LL | _ if false => {},
|
LL | _ if false => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
|
error[E0005]: refutable pattern in local binding
|
||||||
|
--> $DIR/empty-match.rs:76:9
|
||||||
|
|
|
||||||
|
LL | let None = x;
|
||||||
|
| ^^^^ pattern `Some(_)` not covered
|
||||||
|
|
|
||||||
|
= note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
|
||||||
|
= note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
|
||||||
|
= note: pattern `Some(_)` is currently uninhabited, but this variant contains private fields which may become inhabited in the future
|
||||||
|
= note: the matched value is of type `Option<SecretlyUninhabitedForeignStruct>`
|
||||||
|
help: you might want to use `if let` to ignore the variant that isn't matched
|
||||||
|
|
|
||||||
|
LL | if let None = x { todo!() };
|
||||||
|
| ++ +++++++++++
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:57:9
|
--> $DIR/empty-match.rs:88:9
|
||||||
|
|
|
|
||||||
LL | _ => {},
|
LL | _ => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:60:9
|
--> $DIR/empty-match.rs:91:9
|
||||||
|
|
|
|
||||||
LL | _ if false => {},
|
LL | _ if false => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `u8` is non-empty
|
error[E0004]: non-exhaustive patterns: type `u8` is non-empty
|
||||||
--> $DIR/empty-match.rs:78:20
|
--> $DIR/empty-match.rs:109:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(0u8);
|
LL | match_no_arms!(0u8);
|
||||||
| ^^^
|
| ^^^
|
||||||
@ -50,13 +65,13 @@ LL | match_no_arms!(0u8);
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct1` is non-empty
|
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct1` is non-empty
|
||||||
--> $DIR/empty-match.rs:79:20
|
--> $DIR/empty-match.rs:111:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyStruct1);
|
LL | match_no_arms!(NonEmptyStruct1);
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
note: `NonEmptyStruct1` defined here
|
note: `NonEmptyStruct1` defined here
|
||||||
--> $DIR/empty-match.rs:14:8
|
--> $DIR/empty-match.rs:15:8
|
||||||
|
|
|
|
||||||
LL | struct NonEmptyStruct1;
|
LL | struct NonEmptyStruct1;
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
@ -64,13 +79,13 @@ LL | struct NonEmptyStruct1;
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct2` is non-empty
|
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct2` is non-empty
|
||||||
--> $DIR/empty-match.rs:80:20
|
--> $DIR/empty-match.rs:113:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyStruct2(true));
|
LL | match_no_arms!(NonEmptyStruct2(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
note: `NonEmptyStruct2` defined here
|
note: `NonEmptyStruct2` defined here
|
||||||
--> $DIR/empty-match.rs:15:8
|
--> $DIR/empty-match.rs:18:8
|
||||||
|
|
|
|
||||||
LL | struct NonEmptyStruct2(bool);
|
LL | struct NonEmptyStruct2(bool);
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
@ -78,13 +93,13 @@ LL | struct NonEmptyStruct2(bool);
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion1` is non-empty
|
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion1` is non-empty
|
||||||
--> $DIR/empty-match.rs:81:20
|
--> $DIR/empty-match.rs:115:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!((NonEmptyUnion1 { foo: () }));
|
LL | match_no_arms!((NonEmptyUnion1 { foo: () }));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
note: `NonEmptyUnion1` defined here
|
note: `NonEmptyUnion1` defined here
|
||||||
--> $DIR/empty-match.rs:16:7
|
--> $DIR/empty-match.rs:21:7
|
||||||
|
|
|
|
||||||
LL | union NonEmptyUnion1 {
|
LL | union NonEmptyUnion1 {
|
||||||
| ^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^
|
||||||
@ -92,13 +107,13 @@ LL | union NonEmptyUnion1 {
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion2` is non-empty
|
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion2` is non-empty
|
||||||
--> $DIR/empty-match.rs:82:20
|
--> $DIR/empty-match.rs:117:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!((NonEmptyUnion2 { foo: () }));
|
LL | match_no_arms!((NonEmptyUnion2 { foo: () }));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
note: `NonEmptyUnion2` defined here
|
note: `NonEmptyUnion2` defined here
|
||||||
--> $DIR/empty-match.rs:19:7
|
--> $DIR/empty-match.rs:26:7
|
||||||
|
|
|
|
||||||
LL | union NonEmptyUnion2 {
|
LL | union NonEmptyUnion2 {
|
||||||
| ^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^
|
||||||
@ -106,13 +121,13 @@ LL | union NonEmptyUnion2 {
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
|
||||||
--> $DIR/empty-match.rs:83:20
|
--> $DIR/empty-match.rs:119:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyEnum1::Foo(true));
|
LL | match_no_arms!(NonEmptyEnum1::Foo(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum1` defined here
|
note: `NonEmptyEnum1` defined here
|
||||||
--> $DIR/empty-match.rs:24:5
|
--> $DIR/empty-match.rs:33:5
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum1 {
|
LL | enum NonEmptyEnum1 {
|
||||||
| -------------
|
| -------------
|
||||||
@ -122,31 +137,32 @@ LL | Foo(bool),
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
--> $DIR/empty-match.rs:84:20
|
--> $DIR/empty-match.rs:122:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyEnum2::Foo(true));
|
LL | match_no_arms!(NonEmptyEnum2::Foo(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum2` defined here
|
note: `NonEmptyEnum2` defined here
|
||||||
--> $DIR/empty-match.rs:27:5
|
--> $DIR/empty-match.rs:40:5
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum2 {
|
LL | enum NonEmptyEnum2 {
|
||||||
| -------------
|
| -------------
|
||||||
LL | Foo(bool),
|
LL | Foo(bool),
|
||||||
| ^^^ not covered
|
| ^^^ not covered
|
||||||
|
...
|
||||||
LL | Bar,
|
LL | Bar,
|
||||||
| ^^^ not covered
|
| ^^^ not covered
|
||||||
= note: the matched value is of type `NonEmptyEnum2`
|
= note: the matched value is of type `NonEmptyEnum2`
|
||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
--> $DIR/empty-match.rs:85:20
|
--> $DIR/empty-match.rs:125:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyEnum5::V1);
|
LL | match_no_arms!(NonEmptyEnum5::V1);
|
||||||
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum5` defined here
|
note: `NonEmptyEnum5` defined here
|
||||||
--> $DIR/empty-match.rs:30:6
|
--> $DIR/empty-match.rs:49:6
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum5 {
|
LL | enum NonEmptyEnum5 {
|
||||||
| ^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^
|
||||||
@ -154,7 +170,7 @@ LL | enum NonEmptyEnum5 {
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `_` not covered
|
error[E0004]: non-exhaustive patterns: `_` not covered
|
||||||
--> $DIR/empty-match.rs:87:24
|
--> $DIR/empty-match.rs:129:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(0u8);
|
LL | match_guarded_arm!(0u8);
|
||||||
| ^^^ pattern `_` not covered
|
| ^^^ pattern `_` not covered
|
||||||
@ -167,13 +183,13 @@ LL + _ => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyStruct1` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyStruct1` not covered
|
||||||
--> $DIR/empty-match.rs:88:24
|
--> $DIR/empty-match.rs:133:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyStruct1);
|
LL | match_guarded_arm!(NonEmptyStruct1);
|
||||||
| ^^^^^^^^^^^^^^^ pattern `NonEmptyStruct1` not covered
|
| ^^^^^^^^^^^^^^^ pattern `NonEmptyStruct1` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyStruct1` defined here
|
note: `NonEmptyStruct1` defined here
|
||||||
--> $DIR/empty-match.rs:14:8
|
--> $DIR/empty-match.rs:15:8
|
||||||
|
|
|
|
||||||
LL | struct NonEmptyStruct1;
|
LL | struct NonEmptyStruct1;
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
@ -185,13 +201,13 @@ LL + NonEmptyStruct1 => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyStruct2(_)` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyStruct2(_)` not covered
|
||||||
--> $DIR/empty-match.rs:89:24
|
--> $DIR/empty-match.rs:137:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyStruct2(true));
|
LL | match_guarded_arm!(NonEmptyStruct2(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyStruct2(_)` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyStruct2(_)` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyStruct2` defined here
|
note: `NonEmptyStruct2` defined here
|
||||||
--> $DIR/empty-match.rs:15:8
|
--> $DIR/empty-match.rs:18:8
|
||||||
|
|
|
|
||||||
LL | struct NonEmptyStruct2(bool);
|
LL | struct NonEmptyStruct2(bool);
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
@ -203,13 +219,13 @@ LL + NonEmptyStruct2(_) => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyUnion1 { .. }` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyUnion1 { .. }` not covered
|
||||||
--> $DIR/empty-match.rs:90:24
|
--> $DIR/empty-match.rs:141:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!((NonEmptyUnion1 { foo: () }));
|
LL | match_guarded_arm!((NonEmptyUnion1 { foo: () }));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion1 { .. }` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion1 { .. }` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyUnion1` defined here
|
note: `NonEmptyUnion1` defined here
|
||||||
--> $DIR/empty-match.rs:16:7
|
--> $DIR/empty-match.rs:21:7
|
||||||
|
|
|
|
||||||
LL | union NonEmptyUnion1 {
|
LL | union NonEmptyUnion1 {
|
||||||
| ^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^
|
||||||
@ -221,13 +237,13 @@ LL + NonEmptyUnion1 { .. } => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyUnion2 { .. }` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyUnion2 { .. }` not covered
|
||||||
--> $DIR/empty-match.rs:91:24
|
--> $DIR/empty-match.rs:145:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!((NonEmptyUnion2 { foo: () }));
|
LL | match_guarded_arm!((NonEmptyUnion2 { foo: () }));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion2 { .. }` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion2 { .. }` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyUnion2` defined here
|
note: `NonEmptyUnion2` defined here
|
||||||
--> $DIR/empty-match.rs:19:7
|
--> $DIR/empty-match.rs:26:7
|
||||||
|
|
|
|
||||||
LL | union NonEmptyUnion2 {
|
LL | union NonEmptyUnion2 {
|
||||||
| ^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^
|
||||||
@ -239,13 +255,13 @@ LL + NonEmptyUnion2 { .. } => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
|
||||||
--> $DIR/empty-match.rs:92:24
|
--> $DIR/empty-match.rs:149:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyEnum1::Foo(true));
|
LL | match_guarded_arm!(NonEmptyEnum1::Foo(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum1` defined here
|
note: `NonEmptyEnum1` defined here
|
||||||
--> $DIR/empty-match.rs:24:5
|
--> $DIR/empty-match.rs:33:5
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum1 {
|
LL | enum NonEmptyEnum1 {
|
||||||
| -------------
|
| -------------
|
||||||
@ -259,18 +275,19 @@ LL + NonEmptyEnum1::Foo(_) => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
--> $DIR/empty-match.rs:93:24
|
--> $DIR/empty-match.rs:153:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyEnum2::Foo(true));
|
LL | match_guarded_arm!(NonEmptyEnum2::Foo(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum2` defined here
|
note: `NonEmptyEnum2` defined here
|
||||||
--> $DIR/empty-match.rs:27:5
|
--> $DIR/empty-match.rs:40:5
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum2 {
|
LL | enum NonEmptyEnum2 {
|
||||||
| -------------
|
| -------------
|
||||||
LL | Foo(bool),
|
LL | Foo(bool),
|
||||||
| ^^^ not covered
|
| ^^^ not covered
|
||||||
|
...
|
||||||
LL | Bar,
|
LL | Bar,
|
||||||
| ^^^ not covered
|
| ^^^ not covered
|
||||||
= note: the matched value is of type `NonEmptyEnum2`
|
= note: the matched value is of type `NonEmptyEnum2`
|
||||||
@ -281,13 +298,13 @@ LL + NonEmptyEnum2::Foo(_) | NonEmptyEnum2::Bar => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
--> $DIR/empty-match.rs:94:24
|
--> $DIR/empty-match.rs:157:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyEnum5::V1);
|
LL | match_guarded_arm!(NonEmptyEnum5::V1);
|
||||||
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum5` defined here
|
note: `NonEmptyEnum5` defined here
|
||||||
--> $DIR/empty-match.rs:30:6
|
--> $DIR/empty-match.rs:49:6
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum5 {
|
LL | enum NonEmptyEnum5 {
|
||||||
| ^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^
|
||||||
@ -298,6 +315,7 @@ LL ~ _ if false => {},
|
|||||||
LL + _ => todo!()
|
LL + _ => todo!()
|
||||||
|
|
|
|
||||||
|
|
||||||
error: aborting due to 22 previous errors
|
error: aborting due to 23 previous errors
|
||||||
|
|
||||||
For more information about this error, try `rustc --explain E0004`.
|
Some errors have detailed explanations: E0004, E0005.
|
||||||
|
For more information about an error, try `rustc --explain E0004`.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:37:9
|
--> $DIR/empty-match.rs:58:9
|
||||||
|
|
|
|
||||||
LL | _ => {},
|
LL | _ => {},
|
||||||
| ^
|
| ^
|
||||||
@ -11,37 +11,51 @@ LL | #![deny(unreachable_patterns)]
|
|||||||
| ^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:40:9
|
--> $DIR/empty-match.rs:61:9
|
||||||
|
|
|
|
||||||
LL | _ if false => {},
|
LL | _ if false => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:47:9
|
--> $DIR/empty-match.rs:68:9
|
||||||
|
|
|
|
||||||
LL | _ => {},
|
LL | _ => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:50:9
|
--> $DIR/empty-match.rs:71:9
|
||||||
|
|
|
|
||||||
LL | _ if false => {},
|
LL | _ if false => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
|
error[E0005]: refutable pattern in local binding
|
||||||
|
--> $DIR/empty-match.rs:76:9
|
||||||
|
|
|
||||||
|
LL | let None = x;
|
||||||
|
| ^^^^ pattern `Some(_)` not covered
|
||||||
|
|
|
||||||
|
= note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
|
||||||
|
= note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
|
||||||
|
= note: the matched value is of type `Option<SecretlyUninhabitedForeignStruct>`
|
||||||
|
help: you might want to use `if let` to ignore the variant that isn't matched
|
||||||
|
|
|
||||||
|
LL | if let None = x { todo!() };
|
||||||
|
| ++ +++++++++++
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:57:9
|
--> $DIR/empty-match.rs:88:9
|
||||||
|
|
|
|
||||||
LL | _ => {},
|
LL | _ => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
error: unreachable pattern
|
error: unreachable pattern
|
||||||
--> $DIR/empty-match.rs:60:9
|
--> $DIR/empty-match.rs:91:9
|
||||||
|
|
|
|
||||||
LL | _ if false => {},
|
LL | _ if false => {},
|
||||||
| ^
|
| ^
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `u8` is non-empty
|
error[E0004]: non-exhaustive patterns: type `u8` is non-empty
|
||||||
--> $DIR/empty-match.rs:78:20
|
--> $DIR/empty-match.rs:109:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(0u8);
|
LL | match_no_arms!(0u8);
|
||||||
| ^^^
|
| ^^^
|
||||||
@ -50,13 +64,13 @@ LL | match_no_arms!(0u8);
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct1` is non-empty
|
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct1` is non-empty
|
||||||
--> $DIR/empty-match.rs:79:20
|
--> $DIR/empty-match.rs:111:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyStruct1);
|
LL | match_no_arms!(NonEmptyStruct1);
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
note: `NonEmptyStruct1` defined here
|
note: `NonEmptyStruct1` defined here
|
||||||
--> $DIR/empty-match.rs:14:8
|
--> $DIR/empty-match.rs:15:8
|
||||||
|
|
|
|
||||||
LL | struct NonEmptyStruct1;
|
LL | struct NonEmptyStruct1;
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
@ -64,13 +78,13 @@ LL | struct NonEmptyStruct1;
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct2` is non-empty
|
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct2` is non-empty
|
||||||
--> $DIR/empty-match.rs:80:20
|
--> $DIR/empty-match.rs:113:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyStruct2(true));
|
LL | match_no_arms!(NonEmptyStruct2(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
note: `NonEmptyStruct2` defined here
|
note: `NonEmptyStruct2` defined here
|
||||||
--> $DIR/empty-match.rs:15:8
|
--> $DIR/empty-match.rs:18:8
|
||||||
|
|
|
|
||||||
LL | struct NonEmptyStruct2(bool);
|
LL | struct NonEmptyStruct2(bool);
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
@ -78,13 +92,13 @@ LL | struct NonEmptyStruct2(bool);
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion1` is non-empty
|
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion1` is non-empty
|
||||||
--> $DIR/empty-match.rs:81:20
|
--> $DIR/empty-match.rs:115:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!((NonEmptyUnion1 { foo: () }));
|
LL | match_no_arms!((NonEmptyUnion1 { foo: () }));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
note: `NonEmptyUnion1` defined here
|
note: `NonEmptyUnion1` defined here
|
||||||
--> $DIR/empty-match.rs:16:7
|
--> $DIR/empty-match.rs:21:7
|
||||||
|
|
|
|
||||||
LL | union NonEmptyUnion1 {
|
LL | union NonEmptyUnion1 {
|
||||||
| ^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^
|
||||||
@ -92,13 +106,13 @@ LL | union NonEmptyUnion1 {
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion2` is non-empty
|
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion2` is non-empty
|
||||||
--> $DIR/empty-match.rs:82:20
|
--> $DIR/empty-match.rs:117:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!((NonEmptyUnion2 { foo: () }));
|
LL | match_no_arms!((NonEmptyUnion2 { foo: () }));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
note: `NonEmptyUnion2` defined here
|
note: `NonEmptyUnion2` defined here
|
||||||
--> $DIR/empty-match.rs:19:7
|
--> $DIR/empty-match.rs:26:7
|
||||||
|
|
|
|
||||||
LL | union NonEmptyUnion2 {
|
LL | union NonEmptyUnion2 {
|
||||||
| ^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^
|
||||||
@ -106,13 +120,13 @@ LL | union NonEmptyUnion2 {
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
|
||||||
--> $DIR/empty-match.rs:83:20
|
--> $DIR/empty-match.rs:119:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyEnum1::Foo(true));
|
LL | match_no_arms!(NonEmptyEnum1::Foo(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum1` defined here
|
note: `NonEmptyEnum1` defined here
|
||||||
--> $DIR/empty-match.rs:24:5
|
--> $DIR/empty-match.rs:33:5
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum1 {
|
LL | enum NonEmptyEnum1 {
|
||||||
| -------------
|
| -------------
|
||||||
@ -122,31 +136,32 @@ LL | Foo(bool),
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
--> $DIR/empty-match.rs:84:20
|
--> $DIR/empty-match.rs:122:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyEnum2::Foo(true));
|
LL | match_no_arms!(NonEmptyEnum2::Foo(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum2` defined here
|
note: `NonEmptyEnum2` defined here
|
||||||
--> $DIR/empty-match.rs:27:5
|
--> $DIR/empty-match.rs:40:5
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum2 {
|
LL | enum NonEmptyEnum2 {
|
||||||
| -------------
|
| -------------
|
||||||
LL | Foo(bool),
|
LL | Foo(bool),
|
||||||
| ^^^ not covered
|
| ^^^ not covered
|
||||||
|
...
|
||||||
LL | Bar,
|
LL | Bar,
|
||||||
| ^^^ not covered
|
| ^^^ not covered
|
||||||
= note: the matched value is of type `NonEmptyEnum2`
|
= note: the matched value is of type `NonEmptyEnum2`
|
||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
--> $DIR/empty-match.rs:85:20
|
--> $DIR/empty-match.rs:125:20
|
||||||
|
|
|
|
||||||
LL | match_no_arms!(NonEmptyEnum5::V1);
|
LL | match_no_arms!(NonEmptyEnum5::V1);
|
||||||
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum5` defined here
|
note: `NonEmptyEnum5` defined here
|
||||||
--> $DIR/empty-match.rs:30:6
|
--> $DIR/empty-match.rs:49:6
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum5 {
|
LL | enum NonEmptyEnum5 {
|
||||||
| ^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^
|
||||||
@ -154,7 +169,7 @@ LL | enum NonEmptyEnum5 {
|
|||||||
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
|
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `_` not covered
|
error[E0004]: non-exhaustive patterns: `_` not covered
|
||||||
--> $DIR/empty-match.rs:87:24
|
--> $DIR/empty-match.rs:129:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(0u8);
|
LL | match_guarded_arm!(0u8);
|
||||||
| ^^^ pattern `_` not covered
|
| ^^^ pattern `_` not covered
|
||||||
@ -167,13 +182,13 @@ LL + _ => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyStruct1` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyStruct1` not covered
|
||||||
--> $DIR/empty-match.rs:88:24
|
--> $DIR/empty-match.rs:133:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyStruct1);
|
LL | match_guarded_arm!(NonEmptyStruct1);
|
||||||
| ^^^^^^^^^^^^^^^ pattern `NonEmptyStruct1` not covered
|
| ^^^^^^^^^^^^^^^ pattern `NonEmptyStruct1` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyStruct1` defined here
|
note: `NonEmptyStruct1` defined here
|
||||||
--> $DIR/empty-match.rs:14:8
|
--> $DIR/empty-match.rs:15:8
|
||||||
|
|
|
|
||||||
LL | struct NonEmptyStruct1;
|
LL | struct NonEmptyStruct1;
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
@ -185,13 +200,13 @@ LL + NonEmptyStruct1 => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyStruct2(_)` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyStruct2(_)` not covered
|
||||||
--> $DIR/empty-match.rs:89:24
|
--> $DIR/empty-match.rs:137:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyStruct2(true));
|
LL | match_guarded_arm!(NonEmptyStruct2(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyStruct2(_)` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyStruct2(_)` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyStruct2` defined here
|
note: `NonEmptyStruct2` defined here
|
||||||
--> $DIR/empty-match.rs:15:8
|
--> $DIR/empty-match.rs:18:8
|
||||||
|
|
|
|
||||||
LL | struct NonEmptyStruct2(bool);
|
LL | struct NonEmptyStruct2(bool);
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^
|
||||||
@ -203,13 +218,13 @@ LL + NonEmptyStruct2(_) => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyUnion1 { .. }` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyUnion1 { .. }` not covered
|
||||||
--> $DIR/empty-match.rs:90:24
|
--> $DIR/empty-match.rs:141:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!((NonEmptyUnion1 { foo: () }));
|
LL | match_guarded_arm!((NonEmptyUnion1 { foo: () }));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion1 { .. }` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion1 { .. }` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyUnion1` defined here
|
note: `NonEmptyUnion1` defined here
|
||||||
--> $DIR/empty-match.rs:16:7
|
--> $DIR/empty-match.rs:21:7
|
||||||
|
|
|
|
||||||
LL | union NonEmptyUnion1 {
|
LL | union NonEmptyUnion1 {
|
||||||
| ^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^
|
||||||
@ -221,13 +236,13 @@ LL + NonEmptyUnion1 { .. } => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyUnion2 { .. }` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyUnion2 { .. }` not covered
|
||||||
--> $DIR/empty-match.rs:91:24
|
--> $DIR/empty-match.rs:145:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!((NonEmptyUnion2 { foo: () }));
|
LL | match_guarded_arm!((NonEmptyUnion2 { foo: () }));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion2 { .. }` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion2 { .. }` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyUnion2` defined here
|
note: `NonEmptyUnion2` defined here
|
||||||
--> $DIR/empty-match.rs:19:7
|
--> $DIR/empty-match.rs:26:7
|
||||||
|
|
|
|
||||||
LL | union NonEmptyUnion2 {
|
LL | union NonEmptyUnion2 {
|
||||||
| ^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^
|
||||||
@ -239,13 +254,13 @@ LL + NonEmptyUnion2 { .. } => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
|
||||||
--> $DIR/empty-match.rs:92:24
|
--> $DIR/empty-match.rs:149:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyEnum1::Foo(true));
|
LL | match_guarded_arm!(NonEmptyEnum1::Foo(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum1` defined here
|
note: `NonEmptyEnum1` defined here
|
||||||
--> $DIR/empty-match.rs:24:5
|
--> $DIR/empty-match.rs:33:5
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum1 {
|
LL | enum NonEmptyEnum1 {
|
||||||
| -------------
|
| -------------
|
||||||
@ -259,18 +274,19 @@ LL + NonEmptyEnum1::Foo(_) => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
--> $DIR/empty-match.rs:93:24
|
--> $DIR/empty-match.rs:153:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyEnum2::Foo(true));
|
LL | match_guarded_arm!(NonEmptyEnum2::Foo(true));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum2` defined here
|
note: `NonEmptyEnum2` defined here
|
||||||
--> $DIR/empty-match.rs:27:5
|
--> $DIR/empty-match.rs:40:5
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum2 {
|
LL | enum NonEmptyEnum2 {
|
||||||
| -------------
|
| -------------
|
||||||
LL | Foo(bool),
|
LL | Foo(bool),
|
||||||
| ^^^ not covered
|
| ^^^ not covered
|
||||||
|
...
|
||||||
LL | Bar,
|
LL | Bar,
|
||||||
| ^^^ not covered
|
| ^^^ not covered
|
||||||
= note: the matched value is of type `NonEmptyEnum2`
|
= note: the matched value is of type `NonEmptyEnum2`
|
||||||
@ -281,13 +297,13 @@ LL + NonEmptyEnum2::Foo(_) | NonEmptyEnum2::Bar => todo!()
|
|||||||
|
|
|
|
||||||
|
|
||||||
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
--> $DIR/empty-match.rs:94:24
|
--> $DIR/empty-match.rs:157:24
|
||||||
|
|
|
|
||||||
LL | match_guarded_arm!(NonEmptyEnum5::V1);
|
LL | match_guarded_arm!(NonEmptyEnum5::V1);
|
||||||
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
|
|
|
|
||||||
note: `NonEmptyEnum5` defined here
|
note: `NonEmptyEnum5` defined here
|
||||||
--> $DIR/empty-match.rs:30:6
|
--> $DIR/empty-match.rs:49:6
|
||||||
|
|
|
|
||||||
LL | enum NonEmptyEnum5 {
|
LL | enum NonEmptyEnum5 {
|
||||||
| ^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^
|
||||||
@ -298,6 +314,7 @@ LL ~ _ if false => {},
|
|||||||
LL + _ => todo!()
|
LL + _ => todo!()
|
||||||
|
|
|
|
||||||
|
|
||||||
error: aborting due to 22 previous errors
|
error: aborting due to 23 previous errors
|
||||||
|
|
||||||
For more information about this error, try `rustc --explain E0004`.
|
Some errors have detailed explanations: E0004, E0005.
|
||||||
|
For more information about an error, try `rustc --explain E0004`.
|
||||||
|
@ -6,28 +6,49 @@
|
|||||||
#![feature(never_type_fallback)]
|
#![feature(never_type_fallback)]
|
||||||
#![cfg_attr(exhaustive_patterns, feature(exhaustive_patterns))]
|
#![cfg_attr(exhaustive_patterns, feature(exhaustive_patterns))]
|
||||||
#![deny(unreachable_patterns)]
|
#![deny(unreachable_patterns)]
|
||||||
|
//~^ NOTE the lint level is defined here
|
||||||
|
|
||||||
extern crate empty;
|
extern crate empty;
|
||||||
|
|
||||||
enum EmptyEnum {}
|
enum EmptyEnum {}
|
||||||
|
|
||||||
struct NonEmptyStruct1;
|
struct NonEmptyStruct1;
|
||||||
|
//~^ NOTE `NonEmptyStruct1` defined here
|
||||||
|
//~| NOTE `NonEmptyStruct1` defined here
|
||||||
struct NonEmptyStruct2(bool);
|
struct NonEmptyStruct2(bool);
|
||||||
|
//~^ NOTE `NonEmptyStruct2` defined here
|
||||||
|
//~| NOTE `NonEmptyStruct2` defined here
|
||||||
union NonEmptyUnion1 {
|
union NonEmptyUnion1 {
|
||||||
|
//~^ NOTE `NonEmptyUnion1` defined here
|
||||||
|
//~| NOTE `NonEmptyUnion1` defined here
|
||||||
foo: (),
|
foo: (),
|
||||||
}
|
}
|
||||||
union NonEmptyUnion2 {
|
union NonEmptyUnion2 {
|
||||||
|
//~^ NOTE `NonEmptyUnion2` defined here
|
||||||
|
//~| NOTE `NonEmptyUnion2` defined here
|
||||||
foo: (),
|
foo: (),
|
||||||
bar: (),
|
bar: (),
|
||||||
}
|
}
|
||||||
enum NonEmptyEnum1 {
|
enum NonEmptyEnum1 {
|
||||||
Foo(bool),
|
Foo(bool),
|
||||||
|
//~^ NOTE `NonEmptyEnum1` defined here
|
||||||
|
//~| NOTE `NonEmptyEnum1` defined here
|
||||||
|
//~| NOTE not covered
|
||||||
|
//~| NOTE not covered
|
||||||
}
|
}
|
||||||
enum NonEmptyEnum2 {
|
enum NonEmptyEnum2 {
|
||||||
Foo(bool),
|
Foo(bool),
|
||||||
|
//~^ NOTE `NonEmptyEnum2` defined here
|
||||||
|
//~| NOTE `NonEmptyEnum2` defined here
|
||||||
|
//~| NOTE not covered
|
||||||
|
//~| NOTE not covered
|
||||||
Bar,
|
Bar,
|
||||||
|
//~^ NOTE not covered
|
||||||
|
//~| NOTE not covered
|
||||||
}
|
}
|
||||||
enum NonEmptyEnum5 {
|
enum NonEmptyEnum5 {
|
||||||
|
//~^ NOTE `NonEmptyEnum5` defined here
|
||||||
|
//~| NOTE `NonEmptyEnum5` defined here
|
||||||
V1, V2, V3, V4, V5,
|
V1, V2, V3, V4, V5,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -51,6 +72,16 @@ fn empty_foreign_enum(x: empty::EmptyForeignEnum) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn empty_foreign_enum_private(x: Option<empty::SecretlyUninhabitedForeignStruct>) {
|
||||||
|
let None = x;
|
||||||
|
//~^ ERROR refutable pattern in local binding
|
||||||
|
//~| NOTE `let` bindings require an "irrefutable pattern"
|
||||||
|
//~| NOTE for more information, visit
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
//~| NOTE pattern `Some(_)` not covered
|
||||||
|
//[exhaustive_patterns]~| NOTE currently uninhabited, but this variant contains private fields
|
||||||
|
}
|
||||||
|
|
||||||
fn never(x: !) {
|
fn never(x: !) {
|
||||||
match x {} // ok
|
match x {} // ok
|
||||||
match x {
|
match x {
|
||||||
@ -76,20 +107,55 @@ macro_rules! match_guarded_arm {
|
|||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
match_no_arms!(0u8); //~ ERROR type `u8` is non-empty
|
match_no_arms!(0u8); //~ ERROR type `u8` is non-empty
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
match_no_arms!(NonEmptyStruct1); //~ ERROR type `NonEmptyStruct1` is non-empty
|
match_no_arms!(NonEmptyStruct1); //~ ERROR type `NonEmptyStruct1` is non-empty
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
match_no_arms!(NonEmptyStruct2(true)); //~ ERROR type `NonEmptyStruct2` is non-empty
|
match_no_arms!(NonEmptyStruct2(true)); //~ ERROR type `NonEmptyStruct2` is non-empty
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
match_no_arms!((NonEmptyUnion1 { foo: () })); //~ ERROR type `NonEmptyUnion1` is non-empty
|
match_no_arms!((NonEmptyUnion1 { foo: () })); //~ ERROR type `NonEmptyUnion1` is non-empty
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
match_no_arms!((NonEmptyUnion2 { foo: () })); //~ ERROR type `NonEmptyUnion2` is non-empty
|
match_no_arms!((NonEmptyUnion2 { foo: () })); //~ ERROR type `NonEmptyUnion2` is non-empty
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
match_no_arms!(NonEmptyEnum1::Foo(true)); //~ ERROR `NonEmptyEnum1::Foo(_)` not covered
|
match_no_arms!(NonEmptyEnum1::Foo(true)); //~ ERROR `NonEmptyEnum1::Foo(_)` not covered
|
||||||
|
//~| NOTE pattern `NonEmptyEnum1::Foo(_)` not covered
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
match_no_arms!(NonEmptyEnum2::Foo(true)); //~ ERROR `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
match_no_arms!(NonEmptyEnum2::Foo(true)); //~ ERROR `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
|
//~| NOTE patterns `NonEmptyEnum2::Foo(_)` and
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
match_no_arms!(NonEmptyEnum5::V1); //~ ERROR `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
match_no_arms!(NonEmptyEnum5::V1); //~ ERROR `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
|
//~| NOTE patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
|
||||||
match_guarded_arm!(0u8); //~ ERROR `_` not covered
|
match_guarded_arm!(0u8); //~ ERROR `_` not covered
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
//~| NOTE pattern `_` not covered
|
||||||
|
//~| NOTE in this expansion of match_guarded_arm!
|
||||||
match_guarded_arm!(NonEmptyStruct1); //~ ERROR `NonEmptyStruct1` not covered
|
match_guarded_arm!(NonEmptyStruct1); //~ ERROR `NonEmptyStruct1` not covered
|
||||||
|
//~| NOTE pattern `NonEmptyStruct1` not covered
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
//~| NOTE in this expansion of match_guarded_arm!
|
||||||
match_guarded_arm!(NonEmptyStruct2(true)); //~ ERROR `NonEmptyStruct2(_)` not covered
|
match_guarded_arm!(NonEmptyStruct2(true)); //~ ERROR `NonEmptyStruct2(_)` not covered
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
//~| NOTE pattern `NonEmptyStruct2(_)` not covered
|
||||||
|
//~| NOTE in this expansion of match_guarded_arm!
|
||||||
match_guarded_arm!((NonEmptyUnion1 { foo: () })); //~ ERROR `NonEmptyUnion1 { .. }` not covered
|
match_guarded_arm!((NonEmptyUnion1 { foo: () })); //~ ERROR `NonEmptyUnion1 { .. }` not covered
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
//~| NOTE pattern `NonEmptyUnion1 { .. }` not covered
|
||||||
|
//~| NOTE in this expansion of match_guarded_arm!
|
||||||
match_guarded_arm!((NonEmptyUnion2 { foo: () })); //~ ERROR `NonEmptyUnion2 { .. }` not covered
|
match_guarded_arm!((NonEmptyUnion2 { foo: () })); //~ ERROR `NonEmptyUnion2 { .. }` not covered
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
//~| NOTE pattern `NonEmptyUnion2 { .. }` not covered
|
||||||
|
//~| NOTE in this expansion of match_guarded_arm!
|
||||||
match_guarded_arm!(NonEmptyEnum1::Foo(true)); //~ ERROR `NonEmptyEnum1::Foo(_)` not covered
|
match_guarded_arm!(NonEmptyEnum1::Foo(true)); //~ ERROR `NonEmptyEnum1::Foo(_)` not covered
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
//~| NOTE pattern `NonEmptyEnum1::Foo(_)` not covered
|
||||||
|
//~| NOTE in this expansion of match_guarded_arm!
|
||||||
match_guarded_arm!(NonEmptyEnum2::Foo(true)); //~ ERROR `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
match_guarded_arm!(NonEmptyEnum2::Foo(true)); //~ ERROR `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
//~| NOTE patterns `NonEmptyEnum2::Foo(_)` and
|
||||||
|
//~| NOTE in this expansion of match_guarded_arm!
|
||||||
match_guarded_arm!(NonEmptyEnum5::V1); //~ ERROR `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
match_guarded_arm!(NonEmptyEnum5::V1); //~ ERROR `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
||||||
|
//~| NOTE the matched value is of type
|
||||||
|
//~| NOTE patterns `NonEmptyEnum5::V1`,
|
||||||
|
//~| NOTE in this expansion of match_guarded_arm!
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user