blob: 3e5112b0b145f0a0695f56c06430aba9e87e0673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![feature(const_panic)]
#![crate_type = "lib"]
pub const Z: () = panic!("cheese");
//~^ ERROR any use of this value will cause an error
pub const Y: () = unreachable!();
//~^ ERROR any use of this value will cause an error
pub const X: () = unimplemented!();
//~^ ERROR any use of this value will cause an error
|