2018-08-13 06:48:47 -05:00
|
|
|
#![feature(const_panic)]
|
2018-08-26 08:19:34 -05:00
|
|
|
#![crate_type = "lib"]
|
2018-08-13 06:48:47 -05:00
|
|
|
|
2020-10-18 07:34:30 -05:00
|
|
|
const Z: () = std::panic!("cheese");
|
2018-08-26 08:19:34 -05:00
|
|
|
//~^ ERROR any use of this value will cause an error
|
2018-08-13 06:48:47 -05:00
|
|
|
|
2020-10-18 07:34:30 -05:00
|
|
|
const Z2: () = std::panic!();
|
2018-08-26 08:19:34 -05:00
|
|
|
//~^ ERROR any use of this value will cause an error
|
2018-08-13 06:48:47 -05:00
|
|
|
|
2020-10-18 07:34:30 -05:00
|
|
|
const Y: () = std::unreachable!();
|
|
|
|
//~^ ERROR any use of this value will cause an error
|
|
|
|
|
|
|
|
const X: () = std::unimplemented!();
|
|
|
|
//~^ ERROR any use of this value will cause an error
|
|
|
|
|
|
|
|
const Z_CORE: () = core::panic!("cheese");
|
|
|
|
//~^ ERROR any use of this value will cause an error
|
|
|
|
|
|
|
|
const Z2_CORE: () = core::panic!();
|
|
|
|
//~^ ERROR any use of this value will cause an error
|
|
|
|
|
|
|
|
const Y_CORE: () = core::unreachable!();
|
|
|
|
//~^ ERROR any use of this value will cause an error
|
|
|
|
|
|
|
|
const X_CORE: () = core::unimplemented!();
|
2018-08-26 08:19:34 -05:00
|
|
|
//~^ ERROR any use of this value will cause an error
|