blob: c954443a27629375b745ddccf22eec5990cf6f02 [file] [log] [blame]
#![feature(c_unwind)]
extern "C" fn panic_abort() {
//~^ ERROR: the program aborted
panic!()
}
fn main() {
panic_abort();
}