rust/tests/compile-fail/abort-terminator.rs
2020-12-10 19:53:45 +01:00

10 lines
152 B
Rust

// error-pattern: the program aborted
#![feature(unwind_attributes)]
#[unwind(aborts)]
fn panic_abort() { panic!() }
fn main() {
panic_abort();
}