rust/tests/ui/consts/const-eval/erroneous-const.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
550 B
Rust
Raw Normal View History

//! Make sure we error on erroneous consts even if they are unused.
2022-09-21 06:05:20 -05:00
#![allow(unconditional_panic)]
struct PrintName<T>(T);
impl<T> PrintName<T> {
2022-09-21 06:05:20 -05:00
const VOID: () = [()][2]; //~ERROR evaluation of `PrintName::<i32>::VOID` failed
}
const fn no_codegen<T>() {
2020-08-11 05:42:05 -05:00
if false {
2021-05-09 09:07:00 -05: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.
let _ = PrintName::<T>::VOID; //~ constant
}
}
pub static FOO: () = no_codegen::<i32>();
fn main() {
FOO
}