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.
Auto merge of rust-lang#124250 - matthiaskrgr:rollup-b8tqsup, r=matth…
…iaskrgr Rollup of 3 pull requests Successful merges: - rust-lang#124240 (add a couple tests for fixed ICEs.) - rust-lang#124245 (bootstrap: Promote some build_steps comments to docs) - rust-lang#124246 (Add comma at one place in `abs()` documentation) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
15 changed files
with
153 additions
and
29 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
12 changes: 12 additions & 0 deletions
12
tests/ui/borrowck/non-ADT-struct-pattern-box-pattern-ice-121463.rs
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,12 @@ | ||
// issue rust-lang/rust#121463 | ||
// ICE non-ADT in struct pattern | ||
#![feature(box_patterns)] | ||
|
||
fn main() { | ||
let mut a = E::StructVar { boxed: Box::new(5_i32) }; | ||
//~^ ERROR failed to resolve: use of undeclared type `E` | ||
match a { | ||
E::StructVar { box boxed } => { } | ||
//~^ ERROR failed to resolve: use of undeclared type `E` | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
tests/ui/borrowck/non-ADT-struct-pattern-box-pattern-ice-121463.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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
error[E0433]: failed to resolve: use of undeclared type `E` | ||
--> $DIR/non-ADT-struct-pattern-box-pattern-ice-121463.rs:6:17 | ||
| | ||
LL | let mut a = E::StructVar { boxed: Box::new(5_i32) }; | ||
| ^ | ||
| | | ||
| use of undeclared type `E` | ||
| help: a trait with a similar name exists: `Eq` | ||
|
||
error[E0433]: failed to resolve: use of undeclared type `E` | ||
--> $DIR/non-ADT-struct-pattern-box-pattern-ice-121463.rs:9:9 | ||
| | ||
LL | E::StructVar { box boxed } => { } | ||
| ^ | ||
| | | ||
| use of undeclared type `E` | ||
| help: a trait with a similar name exists: `Eq` | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0433`. |
10 changes: 10 additions & 0 deletions
10
tests/ui/const-generics/generic_const_exprs/cannot-convert-refree-ice-114463.rs
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,10 @@ | ||
// issue: rust-lang/rust#114463 | ||
// ICE cannot convert `ReFree ..` to a region vid | ||
#![feature(generic_const_exprs)] | ||
//~^ WARN the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes | ||
fn bug<'a>() { | ||
[(); (|_: &'a u8| (), 0).1]; | ||
//~^ ERROR cannot capture late-bound lifetime in constant | ||
} | ||
|
||
pub fn main() {} |
19 changes: 19 additions & 0 deletions
19
tests/ui/const-generics/generic_const_exprs/cannot-convert-refree-ice-114463.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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
warning: the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes | ||
--> $DIR/cannot-convert-refree-ice-114463.rs:3:12 | ||
| | ||
LL | #![feature(generic_const_exprs)] | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: see issue #76560 <https://github.com/rust-lang/rust/issues/76560> for more information | ||
= note: `#[warn(incomplete_features)]` on by default | ||
|
||
error: cannot capture late-bound lifetime in constant | ||
--> $DIR/cannot-convert-refree-ice-114463.rs:6:16 | ||
| | ||
LL | fn bug<'a>() { | ||
| -- lifetime defined here | ||
LL | [(); (|_: &'a u8| (), 0).1]; | ||
| ^^ | ||
|
||
error: aborting due to 1 previous error; 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// ICE: ImmTy { imm: Scalar(alloc1), ty: *const dyn Sync } input to a fat-to-thin cast (*const dyn Sync -> *const usize | ||
// or with -Zextra-const-ub-checks: expected wide pointer extra data (e.g. slice length or trait object vtable) | ||
// issue: rust-lang/rust#121413 | ||
//@ compile-flags: -Zextra-const-ub-checks | ||
// ignore-tidy-linelength | ||
#![feature(const_refs_to_static)] | ||
const REF_INTERIOR_MUT: &usize = { | ||
static FOO: Sync = AtomicUsize::new(0); | ||
//~^ ERROR failed to resolve: use of undeclared type `AtomicUsize` | ||
//~| WARN trait objects without an explicit `dyn` are deprecated | ||
//~| ERROR the size for values of type `(dyn Sync + 'static)` cannot be known at compilation time | ||
//~| ERROR the size for values of type `(dyn Sync + 'static)` cannot be known at compilation time | ||
//~| WARN this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! | ||
unsafe { &*(&FOO as *const _ as *const usize) } | ||
}; | ||
pub fn main() {} |
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,46 @@ | ||
error[E0433]: failed to resolve: use of undeclared type `AtomicUsize` | ||
--> $DIR/const_refs_to_static-ice-121413.rs:8:24 | ||
| | ||
LL | static FOO: Sync = AtomicUsize::new(0); | ||
| ^^^^^^^^^^^ use of undeclared type `AtomicUsize` | ||
| | ||
help: consider importing this struct | ||
| | ||
LL + use std::sync::atomic::AtomicUsize; | ||
| | ||
|
||
warning: trait objects without an explicit `dyn` are deprecated | ||
--> $DIR/const_refs_to_static-ice-121413.rs:8:17 | ||
| | ||
LL | static FOO: Sync = AtomicUsize::new(0); | ||
| ^^^^ | ||
| | ||
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! | ||
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html> | ||
= note: `#[warn(bare_trait_objects)]` on by default | ||
help: if this is an object-safe trait, use `dyn` | ||
| | ||
LL | static FOO: dyn Sync = AtomicUsize::new(0); | ||
| +++ | ||
|
||
error[E0277]: the size for values of type `(dyn Sync + 'static)` cannot be known at compilation time | ||
--> $DIR/const_refs_to_static-ice-121413.rs:8:17 | ||
| | ||
LL | static FOO: Sync = AtomicUsize::new(0); | ||
| ^^^^ doesn't have a size known at compile-time | ||
| | ||
= help: the trait `Sized` is not implemented for `(dyn Sync + 'static)` | ||
|
||
error[E0277]: the size for values of type `(dyn Sync + 'static)` cannot be known at compilation time | ||
--> $DIR/const_refs_to_static-ice-121413.rs:8:24 | ||
| | ||
LL | static FOO: Sync = AtomicUsize::new(0); | ||
| ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time | ||
| | ||
= help: the trait `Sized` is not implemented for `(dyn Sync + 'static)` | ||
= note: constant expressions must have a statically known size | ||
|
||
error: aborting due to 3 previous errors; 1 warning emitted | ||
|
||
Some errors have detailed explanations: E0277, E0433. | ||
For more information about an error, try `rustc --explain E0277`. |