rust/tests/compile-fail/abort-terminator.rs
2020-06-27 14:43:37 +02: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();
}