rust/src/test/ui/consts/const-eval/const_panic.rs

45 lines
1.7 KiB
Rust
Raw Normal View History

#![feature(const_panic)]
#![crate_type = "lib"]
2020-10-18 08:02:42 -05:00
const MSG: &str = "hello";
const Z: () = std::panic!("cheese");
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out
const Z2: () = std::panic!();
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out
const Y: () = std::unreachable!();
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out
const X: () = std::unimplemented!();
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out
2020-10-18 08:02:42 -05:00
//
const W: () = std::panic!(MSG);
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out
const Z_CORE: () = core::panic!("cheese");
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out
const Z2_CORE: () = core::panic!();
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out
const Y_CORE: () = core::unreachable!();
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out
const X_CORE: () = core::unimplemented!();
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out
2020-10-18 08:02:42 -05:00
const W_CORE: () = core::panic!(MSG);
//~^ ERROR any use of this value will cause an error
2021-01-30 07:49:22 -06:00
//~| WARN this was previously accepted by the compiler but is being phased out