//! Make sure we error on erroneous consts even if they are unused. #![allow(unconditional_panic)] struct PrintName(T); impl PrintName { const VOID: () = [()][2]; //~ERROR evaluation of `PrintName::::VOID` failed } const fn no_codegen() { if false { // 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::::VOID; //~ constant } } pub static FOO: () = no_codegen::(); fn main() { FOO }