forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#78072 - Nadrieril:cleanup-constant-matching…
…, r=varkor Cleanup constant matching in exhaustiveness checking This supercedes rust-lang#77390. I made the `Opaque` constructor work. I have opened two issues rust-lang#78071 and rust-lang#78057 from the discussion we had on the previous PR. They are not regressions nor directly related to the current PR so I thought we'd deal with them separately. I left a FIXME somewhere because I didn't know how to compare string constants for equality. There might even be some unicode things that need to happen there. In the meantime I preserved previous behavior. EDIT: I accidentally fixed rust-lang#78071
- Loading branch information
Showing
12 changed files
with
448 additions
and
347 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// check-pass | ||
// https://github.com/rust-lang/rust/issues/53708 | ||
#[derive(PartialEq, Eq)] | ||
struct S; | ||
|
||
fn main() { | ||
const C: &S = &S; | ||
match C { | ||
C => {} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#![deny(unreachable_patterns)] | ||
|
||
#[derive(PartialEq)] | ||
struct Opaque(i32); | ||
|
||
impl Eq for Opaque {} | ||
|
||
const FOO: Opaque = Opaque(42); | ||
|
||
fn main() { | ||
match FOO { | ||
FOO => {}, | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
_ => {} | ||
//~^ ERROR unreachable pattern | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
error: to use a constant of type `Opaque` in a pattern, `Opaque` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/issue-78057.rs:12:9 | ||
| | ||
LL | FOO => {}, | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/issue-78057.rs:14:9 | ||
| | ||
LL | _ => {} | ||
| ^ | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/issue-78057.rs:1:9 | ||
| | ||
LL | #![deny(unreachable_patterns)] | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
// This file tests the exhaustiveness algorithm on opaque constants. Most of the examples give | ||
// unnecessary warnings because const_to_pat.rs converts a constant pattern to a wildcard when the | ||
// constant is not allowed as a pattern. This is an edge case so we may not care to fix it. | ||
// See also https://github.com/rust-lang/rust/issues/78057 | ||
|
||
#![deny(unreachable_patterns)] | ||
|
||
#[derive(PartialEq)] | ||
struct Foo(i32); | ||
impl Eq for Foo {} | ||
const FOO: Foo = Foo(42); | ||
const FOO_REF: &Foo = &Foo(42); | ||
const FOO_REF_REF: &&Foo = &&Foo(42); | ||
|
||
#[derive(PartialEq)] | ||
struct Bar; | ||
impl Eq for Bar {} | ||
const BAR: Bar = Bar; | ||
|
||
#[derive(PartialEq)] | ||
enum Baz { | ||
Baz1, | ||
Baz2 | ||
} | ||
impl Eq for Baz {} | ||
const BAZ: Baz = Baz::Baz1; | ||
|
||
type Quux = fn(usize, usize) -> usize; | ||
fn quux(a: usize, b: usize) -> usize { a + b } | ||
const QUUX: Quux = quux; | ||
|
||
fn main() { | ||
match FOO { | ||
FOO => {} | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
_ => {} // should not be emitting unreachable warning | ||
//~^ ERROR unreachable pattern | ||
} | ||
|
||
match FOO_REF { | ||
FOO_REF => {} | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
Foo(_) => {} // should not be emitting unreachable warning | ||
//~^ ERROR unreachable pattern | ||
} | ||
|
||
// This used to cause an ICE (https://github.com/rust-lang/rust/issues/78071) | ||
match FOO_REF_REF { | ||
FOO_REF_REF => {} | ||
//~^ WARNING must be annotated with `#[derive(PartialEq, Eq)]` | ||
//~| WARNING this was previously accepted by the compiler but is being phased out | ||
Foo(_) => {} | ||
} | ||
|
||
match BAR { | ||
Bar => {} | ||
BAR => {} // should not be emitting unreachable warning | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
//~| ERROR unreachable pattern | ||
_ => {} | ||
//~^ ERROR unreachable pattern | ||
} | ||
|
||
match BAR { | ||
BAR => {} | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
Bar => {} // should not be emitting unreachable warning | ||
//~^ ERROR unreachable pattern | ||
_ => {} | ||
//~^ ERROR unreachable pattern | ||
} | ||
|
||
match BAR { | ||
BAR => {} | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
BAR => {} // should not be emitting unreachable warning | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
//~| ERROR unreachable pattern | ||
_ => {} // should not be emitting unreachable warning | ||
//~^ ERROR unreachable pattern | ||
} | ||
|
||
match BAZ { | ||
BAZ => {} | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
Baz::Baz1 => {} // should not be emitting unreachable warning | ||
//~^ ERROR unreachable pattern | ||
_ => {} | ||
//~^ ERROR unreachable pattern | ||
} | ||
|
||
match BAZ { | ||
Baz::Baz1 => {} | ||
BAZ => {} | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
_ => {} | ||
//~^ ERROR unreachable pattern | ||
} | ||
|
||
match BAZ { | ||
BAZ => {} | ||
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` | ||
Baz::Baz2 => {} // should not be emitting unreachable warning | ||
//~^ ERROR unreachable pattern | ||
_ => {} // should not be emitting unreachable warning | ||
//~^ ERROR unreachable pattern | ||
} | ||
|
||
match QUUX { | ||
QUUX => {} | ||
QUUX => {} | ||
_ => {} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,158 @@ | ||
error: to use a constant of type `Foo` in a pattern, `Foo` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:34:9 | ||
| | ||
LL | FOO => {} | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:36:9 | ||
| | ||
LL | _ => {} // should not be emitting unreachable warning | ||
| ^ | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/consts-opaque.rs:6:9 | ||
| | ||
LL | #![deny(unreachable_patterns)] | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: to use a constant of type `Foo` in a pattern, `Foo` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:41:9 | ||
| | ||
LL | FOO_REF => {} | ||
| ^^^^^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:43:9 | ||
| | ||
LL | Foo(_) => {} // should not be emitting unreachable warning | ||
| ^^^^^^ | ||
|
||
warning: to use a constant of type `Foo` in a pattern, `Foo` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:49:9 | ||
| | ||
LL | FOO_REF_REF => {} | ||
| ^^^^^^^^^^^ | ||
| | ||
= note: `#[warn(indirect_structural_match)]` on by default | ||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! | ||
= note: for more information, see issue #62411 <https://github.com/rust-lang/rust/issues/62411> | ||
|
||
error: to use a constant of type `Bar` in a pattern, `Bar` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:57:9 | ||
| | ||
LL | BAR => {} // should not be emitting unreachable warning | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:57:9 | ||
| | ||
LL | Bar => {} | ||
| --- matches any value | ||
LL | BAR => {} // should not be emitting unreachable warning | ||
| ^^^ unreachable pattern | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:60:9 | ||
| | ||
LL | Bar => {} | ||
| --- matches any value | ||
... | ||
LL | _ => {} | ||
| ^ unreachable pattern | ||
|
||
error: to use a constant of type `Bar` in a pattern, `Bar` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:65:9 | ||
| | ||
LL | BAR => {} | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:67:9 | ||
| | ||
LL | Bar => {} // should not be emitting unreachable warning | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:69:9 | ||
| | ||
LL | Bar => {} // should not be emitting unreachable warning | ||
| --- matches any value | ||
LL | | ||
LL | _ => {} | ||
| ^ unreachable pattern | ||
|
||
error: to use a constant of type `Bar` in a pattern, `Bar` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:74:9 | ||
| | ||
LL | BAR => {} | ||
| ^^^ | ||
|
||
error: to use a constant of type `Bar` in a pattern, `Bar` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:76:9 | ||
| | ||
LL | BAR => {} // should not be emitting unreachable warning | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:76:9 | ||
| | ||
LL | BAR => {} // should not be emitting unreachable warning | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:79:9 | ||
| | ||
LL | _ => {} // should not be emitting unreachable warning | ||
| ^ | ||
|
||
error: to use a constant of type `Baz` in a pattern, `Baz` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:84:9 | ||
| | ||
LL | BAZ => {} | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:86:9 | ||
| | ||
LL | Baz::Baz1 => {} // should not be emitting unreachable warning | ||
| ^^^^^^^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:88:9 | ||
| | ||
LL | _ => {} | ||
| ^ | ||
|
||
error: to use a constant of type `Baz` in a pattern, `Baz` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:94:9 | ||
| | ||
LL | BAZ => {} | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:96:9 | ||
| | ||
LL | _ => {} | ||
| ^ | ||
|
||
error: to use a constant of type `Baz` in a pattern, `Baz` must be annotated with `#[derive(PartialEq, Eq)]` | ||
--> $DIR/consts-opaque.rs:101:9 | ||
| | ||
LL | BAZ => {} | ||
| ^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:103:9 | ||
| | ||
LL | Baz::Baz2 => {} // should not be emitting unreachable warning | ||
| ^^^^^^^^^ | ||
|
||
error: unreachable pattern | ||
--> $DIR/consts-opaque.rs:105:9 | ||
| | ||
LL | _ => {} // should not be emitting unreachable warning | ||
| ^ | ||
|
||
error: aborting due to 22 previous errors; 1 warning emitted | ||
|
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