-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
135 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 13 additions & 6 deletions
19
tests/ui/rfcs/rfc-2008-non-exhaustive/uninhabited/issue-65157-repeated-match-arm.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
error: unreachable pattern | ||
--> $DIR/issue-65157-repeated-match-arm.rs:15:9 | ||
--> $DIR/issue-65157-repeated-match-arm.rs:14:9 | ||
| | ||
LL | PartiallyInhabitedVariants::Struct { .. } => {}, | ||
| ----------------------------------------- matches all the relevant values | ||
LL | PartiallyInhabitedVariants::Struct { .. } => {}, | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no value can reach this | ||
LL | PartiallyInhabitedVariants::Struct { .. } => {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ matches no values because `PartiallyInhabitedVariants` is uninhabited | ||
| | ||
= note: to learn more about uninhabited types, see https://doc.rust-lang.org/nomicon/exotic-sizes.html#empty-types | ||
note: the lint level is defined here | ||
--> $DIR/issue-65157-repeated-match-arm.rs:2:9 | ||
| | ||
LL | #![deny(unreachable_patterns)] | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 1 previous error | ||
error: unreachable pattern | ||
--> $DIR/issue-65157-repeated-match-arm.rs:16:9 | ||
| | ||
LL | PartiallyInhabitedVariants::Struct { .. } => {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ matches no values because `PartiallyInhabitedVariants` is uninhabited | ||
| | ||
= note: to learn more about uninhabited types, see https://doc.rust-lang.org/nomicon/exotic-sizes.html#empty-types | ||
|
||
error: aborting due to 2 previous errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 12 additions & 54 deletions
66
tests/ui/rfcs/rfc-2008-non-exhaustive/uninhabited/match.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +1,41 @@ | ||
error[E0004]: non-exhaustive patterns: type `UninhabitedEnum` is non-empty | ||
--> $DIR/match.rs:19:11 | ||
error[E0004]: non-exhaustive patterns: type `uninhabited::UninhabitedEnum` is non-empty | ||
--> $DIR/match.rs:14:11 | ||
| | ||
LL | match x {} | ||
| ^ | ||
| | ||
note: `UninhabitedEnum` defined here | ||
note: `uninhabited::UninhabitedEnum` defined here | ||
--> $DIR/auxiliary/uninhabited.rs:5:1 | ||
| | ||
LL | pub enum UninhabitedEnum { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ||
= note: the matched value is of type `UninhabitedEnum`, which is marked as non-exhaustive | ||
= note: the matched value is of type `uninhabited::UninhabitedEnum`, which is marked as non-exhaustive | ||
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown | ||
| | ||
LL ~ match x { | ||
LL + _ => todo!(), | ||
LL ~ } | ||
| | ||
|
||
error[E0004]: non-exhaustive patterns: type `UninhabitedStruct` is non-empty | ||
--> $DIR/match.rs:23:11 | ||
error[E0004]: non-exhaustive patterns: type `uninhabited::PrivatelyUninhabitedStruct` is non-empty | ||
--> $DIR/match.rs:22:11 | ||
| | ||
LL | match x {} | ||
| ^ | ||
| | ||
note: `UninhabitedStruct` defined here | ||
--> $DIR/auxiliary/uninhabited.rs:9:1 | ||
note: `uninhabited::PrivatelyUninhabitedStruct` defined here | ||
--> $DIR/auxiliary/uninhabited.rs:15:1 | ||
| | ||
LL | pub struct UninhabitedStruct { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
= note: the matched value is of type `UninhabitedStruct` | ||
LL | pub struct PrivatelyUninhabitedStruct { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
= note: the matched value is of type `uninhabited::PrivatelyUninhabitedStruct` | ||
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown | ||
| | ||
LL ~ match x { | ||
LL + _ => todo!(), | ||
LL ~ } | ||
| | ||
|
||
error[E0004]: non-exhaustive patterns: type `UninhabitedTupleStruct` is non-empty | ||
--> $DIR/match.rs:27:11 | ||
| | ||
LL | match x {} | ||
| ^ | ||
| | ||
note: `UninhabitedTupleStruct` defined here | ||
--> $DIR/auxiliary/uninhabited.rs:14:1 | ||
| | ||
LL | pub struct UninhabitedTupleStruct(!); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
= note: the matched value is of type `UninhabitedTupleStruct` | ||
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown | ||
| | ||
LL ~ match x { | ||
LL + _ => todo!(), | ||
LL ~ } | ||
| | ||
|
||
error[E0004]: non-exhaustive patterns: `UninhabitedVariants::Tuple(_)` and `UninhabitedVariants::Struct { .. }` not covered | ||
--> $DIR/match.rs:31:11 | ||
| | ||
LL | match x {} | ||
| ^ patterns `UninhabitedVariants::Tuple(_)` and `UninhabitedVariants::Struct { .. }` not covered | ||
| | ||
note: `UninhabitedVariants` defined here | ||
--> $DIR/auxiliary/uninhabited.rs:16:1 | ||
| | ||
LL | pub enum UninhabitedVariants { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
LL | #[non_exhaustive] Tuple(!), | ||
| ----- not covered | ||
LL | #[non_exhaustive] Struct { x: ! } | ||
| ------ not covered | ||
= note: the matched value is of type `UninhabitedVariants` | ||
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms | ||
| | ||
LL ~ match x { | ||
LL + UninhabitedVariants::Tuple(_) | UninhabitedVariants::Struct { .. } => todo!(), | ||
LL ~ } | ||
| | ||
|
||
error: aborting due to 4 previous errors | ||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0004`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.