blob: e42685e9c76b0f586083c68664dec122f6d42988 [file] [log] [blame]
#![no_std]
#![crate_type = "lib"]
#![feature(const_panic)]
const Z: () = panic!("cheese");
//~^ ERROR any use of this value will cause an error
const Y: () = unreachable!();
//~^ ERROR any use of this value will cause an error
const X: () = unimplemented!();
//~^ ERROR any use of this value will cause an error