rust/tests/fail/abort-terminator.rs

11 lines
138 B
Rust
Raw Normal View History

2021-08-05 04:10:30 -05:00
#![feature(c_unwind)]
2020-03-12 14:46:58 -05:00
2022-06-23 14:50:44 -05:00
extern "C" fn panic_abort() {
2022-06-23 14:51:40 -05:00
//~^ ERROR: the program aborted
panic!()
}
2020-03-12 14:46:58 -05:00
fn main() {
panic_abort();
}