Skip to content

Commit bbaf6bd

Browse files
Rollup merge of #116444 - RalfJung:broken-unused-const, r=oli-obk
add test for const-eval error in dead code during monomorphization
2 parents 0e5e04b + 5e1b0cb commit bbaf6bd

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// build-fail
2+
// compile-flags: -O
3+
//! Make sure we detect erroneous constants post-monomorphization even when they are unused. This is
4+
//! crucial, people rely on it for soundness. (https://github.com/rust-lang/rust/issues/112090)
5+
6+
struct PrintName<T>(T);
7+
impl<T> PrintName<T> {
8+
const VOID: () = panic!(); //~ERROR evaluation of `PrintName::<i32>::VOID` failed
9+
}
10+
11+
fn no_codegen<T>() {
12+
// Any function that is called is guaranteed to have all consts that syntactically
13+
// appear in its body evaluated, even if they only appear in dead code.
14+
if false {
15+
let _ = PrintName::<T>::VOID;
16+
}
17+
}
18+
pub fn main() {
19+
no_codegen::<i32>();
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0080]: evaluation of `PrintName::<i32>::VOID` failed
2+
--> $DIR/unused-broken-const-late.rs:8:22
3+
|
4+
LL | const VOID: () = panic!();
5+
| ^^^^^^^^ the evaluated program panicked at 'explicit panic', $DIR/unused-broken-const-late.rs:8:22
6+
|
7+
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
8+
9+
error: aborting due to previous error
10+
11+
For more information about this error, try `rustc --explain E0080`.

0 commit comments

Comments
 (0)