about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/unwind-abort.rs
blob: 688bb08535639b617722d8f26177c8368ad824b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ dont-require-annotations: NOTE

const extern "C" fn foo() {
    panic!() //~ NOTE inside `foo`
}

const _: () = foo(); //~ ERROR explicit panic
// Ensure that the CTFE engine handles calls to `extern "C"` aborting gracefully

fn main() {
    foo();
}