2024-03-13 15:07:47 +01:00
|
|
|
//@revisions: noopt opt
|
2024-03-18 17:54:48 +01:00
|
|
|
//@[noopt] compile-flags: -Copt-level=0
|
2024-03-13 15:07:47 +01:00
|
|
|
//@[opt] compile-flags: -O
|
2020-08-10 10:58:53 +02:00
|
|
|
//! Make sure we error on erroneous consts even if they are unused.
|
|
|
|
|
|
2024-03-13 15:07:47 +01:00
|
|
|
struct Fail<T>(T);
|
|
|
|
|
impl<T> Fail<T> {
|
|
|
|
|
const C: () = panic!(); //~ERROR evaluation of `Fail::<i32>::C` failed
|
2020-08-10 10:58:53 +02:00
|
|
|
}
|
|
|
|
|
|
2024-03-13 15:07:47 +01:00
|
|
|
#[inline(never)]
|
2020-08-11 14:54:02 +02:00
|
|
|
const fn no_codegen<T>() {
|
2020-08-11 12:42:05 +02:00
|
|
|
if false {
|
2021-05-09 16:07:00 +02:00
|
|
|
// This bad constant is only used in dead code in a no-codegen function... and yet we still
|
|
|
|
|
// must make sure that the build fails.
|
2024-03-13 15:07:47 +01:00
|
|
|
// This relies on const-eval evaluating all `required_consts` of `const fn`.
|
|
|
|
|
Fail::<T>::C; //~ constant
|
2020-08-10 10:58:53 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-02 17:45:11 +05:30
|
|
|
pub static FOO: () = no_codegen::<i32>();
|
2020-08-10 10:58:53 +02:00
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
FOO
|
|
|
|
|
}
|