rust/tests/ui/consts/const-eval/unwind-abort.rs
2024-09-14 18:07:06 +02:00

11 lines
218 B
Rust

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();
}