rust/tests/fail/abort-terminator.rs

9 lines
136 B
Rust
Raw Normal View History

2020-12-10 12:53:45 -06:00
// error-pattern: the program aborted
2021-08-05 04:10:30 -05:00
#![feature(c_unwind)]
2020-03-12 14:46:58 -05:00
2021-08-05 04:10:30 -05:00
extern "C" fn panic_abort() { panic!() }
2020-03-12 14:46:58 -05:00
fn main() {
panic_abort();
}