-
Notifications
You must be signed in to change notification settings - Fork 13k
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 #105106 - jhpratt:issue-105101, r=TaKO8Ki
Fix ICE from #105101 Fixes #105101 Rather than comparing idents, compare spans, which should be unique to each variant.
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// compile-flags: --crate-type=lib | ||
|
||
#[derive(Default)] //~ ERROR multiple declared defaults | ||
enum E { | ||
#[default] | ||
A, | ||
#[default] | ||
A, //~ ERROR defined multiple times | ||
} |
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,29 @@ | ||
error: multiple declared defaults | ||
--> $DIR/issue-105101.rs:3:10 | ||
| | ||
LL | #[derive(Default)] | ||
| ^^^^^^^ | ||
... | ||
LL | A, | ||
| - first default | ||
LL | #[default] | ||
LL | A, | ||
| - additional default | ||
| | ||
= note: only one variant can be default | ||
= note: this error originates in the derive macro `Default` (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error[E0428]: the name `A` is defined multiple times | ||
--> $DIR/issue-105101.rs:8:5 | ||
| | ||
LL | A, | ||
| - previous definition of the type `A` here | ||
LL | #[default] | ||
LL | A, | ||
| ^ `A` redefined here | ||
| | ||
= note: `A` must be defined only once in the type namespace of this enum | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0428`. |