11 lines
137 B
Rust
11 lines
137 B
Rust
#![feature(c_unwind)]
|
|
|
|
extern "C" fn panic_abort() {
|
|
//~ ERROR: the program aborted
|
|
panic!()
|
|
}
|
|
|
|
fn main() {
|
|
panic_abort();
|
|
}
|