rust/tests/compile-fail/abort-terminator.rs
2020-03-12 20:48:04 +01:00

10 lines
162 B
Rust

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