-
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.
Auto merge of #108640 - matthiaskrgr:rollup-rii4t5t, r=matthiaskrgr
Rollup of 5 pull requests Successful merges: - #108516 (Restrict `#[rustc_box]` to `Box::new` calls) - #108575 (Erase **all** regions when probing for associated types on ambiguity in astconv) - #108585 (Run compiler test suite in parallel on Fuchsia) - #108606 (Add test case for mismatched open/close delims) - #108609 (Highlight whole expression for E0599) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
22 changed files
with
252 additions
and
64 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
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,18 @@ | ||
#![feature(rustc_attrs, stmt_expr_attributes)] | ||
|
||
fn foo(_: u32, _: u32) {} | ||
fn bar(_: u32) {} | ||
|
||
fn main() { | ||
#[rustc_box] | ||
Box::new(1); // OK | ||
#[rustc_box] | ||
Box::pin(1); //~ ERROR `#[rustc_box]` attribute used incorrectly | ||
#[rustc_box] | ||
foo(1, 1); //~ ERROR `#[rustc_box]` attribute used incorrectly | ||
#[rustc_box] | ||
bar(1); //~ ERROR `#[rustc_box]` attribute used incorrectly | ||
#[rustc_box] //~ ERROR `#[rustc_box]` attribute used incorrectly | ||
#[rustfmt::skip] | ||
Box::new(1); | ||
} |
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,34 @@ | ||
error: `#[rustc_box]` attribute used incorrectly | ||
--> $DIR/rustc-box.rs:10:5 | ||
| | ||
LL | Box::pin(1); | ||
| ^^^^^^^^^^^ | ||
| | ||
= note: `#[rustc_box]` may only be applied to a `Box::new()` call | ||
|
||
error: `#[rustc_box]` attribute used incorrectly | ||
--> $DIR/rustc-box.rs:12:5 | ||
| | ||
LL | foo(1, 1); | ||
| ^^^^^^^^^ | ||
| | ||
= note: `#[rustc_box]` may only be applied to a `Box::new()` call | ||
|
||
error: `#[rustc_box]` attribute used incorrectly | ||
--> $DIR/rustc-box.rs:14:5 | ||
| | ||
LL | bar(1); | ||
| ^^^^^^ | ||
| | ||
= note: `#[rustc_box]` may only be applied to a `Box::new()` call | ||
|
||
error: `#[rustc_box]` attribute used incorrectly | ||
--> $DIR/rustc-box.rs:15:5 | ||
| | ||
LL | #[rustc_box] | ||
| ^^^^^^^^^^^^ | ||
| | ||
= note: no other attributes may be applied | ||
|
||
error: aborting due to 4 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
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,6 @@ | ||
#[derive(A)] | ||
struct S { | ||
d: [u32; { | ||
#![cfg] { | ||
#![w,) //~ ERROR mismatched closing delimiter | ||
//~ ERROR this file contains an unclosed delimiter |
Oops, something went wrong.