forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#105125 - matthiaskrgr:rollup-fr0snmj, r=matth…
…iaskrgr Rollup of 4 pull requests Successful merges: - rust-lang#105078 (Fix `expr_to_spanned_string` ICE) - rust-lang#105087 (Extract llvm datalayout parsing out of spec module) - rust-lang#105088 (rustdoc: remove redundant CSS `div.desc { display: block }`) - rust-lang#105106 (Fix ICE from rust-lang#105101) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
10 changed files
with
156 additions
and
100 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
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`. |
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,3 @@ | ||
fn main() { | ||
println!(""y); //~ ERROR suffixes on string literals are invalid | ||
} |
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,8 @@ | ||
error: suffixes on string literals are invalid | ||
--> $DIR/issue-105011.rs:2:14 | ||
| | ||
LL | println!(""y); | ||
| ^^^ invalid suffix `y` | ||
|
||
error: aborting due to previous error | ||
|