2018-08-13 13:48:47 +02:00
|
|
|
#![feature(const_panic)]
|
2018-08-26 15:19:34 +02:00
|
|
|
#![crate_type = "lib"]
|
2018-08-13 13:48:47 +02:00
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
pub const Z: () = panic!("cheese");
|
|
|
|
//~^ ERROR any use of this value will cause an error
|
2018-08-13 13:48:47 +02:00
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
pub const Y: () = unreachable!();
|
|
|
|
//~^ ERROR any use of this value will cause an error
|
2018-08-13 13:48:47 +02:00
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
pub const X: () = unimplemented!();
|
|
|
|
//~^ ERROR any use of this value will cause an error
|