rust/tests/fail/abort-terminator.rs

11 lines
138 B
Rust
Raw Normal View History

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