forked from rust-lang/miri
-
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 #102091 - RalfJung:const_err, r=oli-obk
make const_err a hard error This lint has been deny-by-default with future incompat wording since [Rust 1.51](rust-lang/rust#80394) and the stable release of this week starts showing it in cargo's future compat reports. I can't wait to finally get rid of at least some of the mess in our const-err-reporting-code. ;) r? `@oli-obk` Fixes rust-lang/rust#71800 Fixes rust-lang/rust#100114
- Loading branch information
Showing
3 changed files
with
5 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
const X: u32 = 5; | ||
const Y: u32 = 6; | ||
const FOO: u32 = [X - Y, Y - X][(X < Y) as usize]; | ||
//~^ERROR: any use of this value | ||
//~|WARN: previously accepted | ||
//~^ERROR: evaluation of constant value failed | ||
|
||
#[rustfmt::skip] // rustfmt bug: https://github.com/rust-lang/rustfmt/issues/5391 | ||
fn main() { | ||
println!("{}", FOO); //~ERROR: post-monomorphization error | ||
//~|ERROR: evaluation of constant value failed | ||
//~|ERROR: erroneous constant used | ||
//~|WARN: previously accepted | ||
println!("{}", 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 |
---|---|---|
@@ -1,39 +1,9 @@ | ||
error: any use of this value will cause an error | ||
--> $DIR/erroneous_const2.rs:LL:CC | ||
| | ||
LL | const FOO: u32 = [X - Y, Y - X][(X < Y) as usize]; | ||
| -------------- ^^^^^ attempt to compute `5_u32 - 6_u32`, which would overflow | ||
| | ||
= 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> | ||
= note: `#[deny(const_err)]` on by default | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/erroneous_const2.rs:LL:CC | ||
| | ||
LL | println!("{}", FOO); | ||
| ^^^ referenced constant has errors | ||
|
||
error: erroneous constant used | ||
--> $DIR/erroneous_const2.rs:LL:CC | ||
| | ||
LL | println!("{}", FOO); | ||
| ^^^ referenced constant has errors | ||
| | ||
= 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> | ||
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error: post-monomorphization error: referenced constant has errors | ||
--> $DIR/erroneous_const2.rs:LL:CC | ||
| | ||
LL | println!("{}", FOO); | ||
| ^^^ referenced constant has errors | ||
| | ||
= note: inside `main` at $DIR/erroneous_const2.rs:LL:CC | ||
|
||
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace | ||
LL | const FOO: u32 = [X - Y, Y - X][(X < Y) as usize]; | ||
| ^^^^^ attempt to compute `5_u32 - 6_u32`, which would overflow | ||
|
||
error: aborting due to 4 previous errors | ||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0080`. |