rust/tests/compile-fail/abort-terminator.rs
2021-08-07 15:57:54 +08:00

9 lines
136 B
Rust

// error-pattern: the program aborted
#![feature(c_unwind)]
extern "C" fn panic_abort() { panic!() }
fn main() {
panic_abort();
}