rust/tests/ui/consts/const-eval/unwind-abort.rs
2024-06-19 13:54:55 +01:00

13 lines
248 B
Rust

#![feature(const_extern_fn)]
const extern "C" fn foo() {
panic!() //~ ERROR evaluation of constant value failed
}
const _: () = foo();
// Ensure that the CTFE engine handles calls to `extern "C"` aborting gracefully
fn main() {
foo();
}