rust/tests/compile-fail/abort-terminator.rs
2020-03-21 10:54:56 +01:00

11 lines
210 B
Rust

// error-pattern: the evaluated program aborted
// ignore-windows (panics dont work on Windows)
#![feature(unwind_attributes)]
#[unwind(aborts)]
fn panic_abort() { panic!() }
fn main() {
panic_abort();
}