-
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 #85112 - RalfJung:promoted-errors, r=oli-obk
ensure failing promoteds in const/static bodies are handled correctly `const`/`static` bodies are the one case where we still promote code that might fail to evaluate. Ensure that this is handled correctly; in particular, it must not fail compilation. `src/test/ui/consts/const-eval/erroneous-const.rs` ensures that when a non-promoted fails to evaluate, we *do* show an error. r? `@oli-obk`
- Loading branch information
Showing
8 changed files
with
101 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
//! Make sure we error on erroneous consts even if they are unused. | ||
#![warn(const_err, unconditional_panic)] | ||
|
||
struct PrintName<T>(T); | ||
impl<T> PrintName<T> { | ||
const VOID: () = [()][2]; //~WARN any use of this value will cause an error | ||
//~^ WARN this operation will panic at runtime | ||
//~| WARN this was previously accepted by the compiler but is being phased out | ||
} | ||
|
||
pub static FOO: () = { | ||
if false { | ||
// This bad constant is only used in dead code in a static initializer... and yet we still | ||
// must make sure that the build fails. | ||
let _ = PrintName::<i32>::VOID; //~ERROR could not evaluate static initializer | ||
} | ||
}; | ||
|
||
fn main() { | ||
FOO | ||
} |
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,37 @@ | ||
warning: this operation will panic at runtime | ||
--> $DIR/erroneous-const2.rs:6:22 | ||
| | ||
LL | const VOID: () = [()][2]; | ||
| ^^^^^^^ index out of bounds: the length is 1 but the index is 2 | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/erroneous-const2.rs:2:20 | ||
| | ||
LL | #![warn(const_err, unconditional_panic)] | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
|
||
warning: any use of this value will cause an error | ||
--> $DIR/erroneous-const2.rs:6:22 | ||
| | ||
LL | const VOID: () = [()][2]; | ||
| -----------------^^^^^^^- | ||
| | | ||
| index out of bounds: the length is 1 but the index is 2 | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/erroneous-const2.rs:2:9 | ||
| | ||
LL | #![warn(const_err, unconditional_panic)] | ||
| ^^^^^^^^^ | ||
= 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 #71800 <https://github.com/rust-lang/rust/issues/71800> | ||
|
||
error[E0080]: could not evaluate static initializer | ||
--> $DIR/erroneous-const2.rs:15:17 | ||
| | ||
LL | let _ = PrintName::<i32>::VOID; | ||
| ^^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors | ||
|
||
error: aborting due to previous error; 2 warnings emitted | ||
|
||
For more information about this error, try `rustc --explain E0080`. |
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