]> git.lizzy.rs Git - rust.git/blob - tests/compile-fail/abort-terminator.rs
af1a155435fb6de07f973a8b255526c69b85c460
[rust.git] / tests / compile-fail / abort-terminator.rs
1 // error-pattern: the evaluated program aborted
2 // ignore-windows (panics dont work on Windows)
3 #![feature(unwind_attributes)]
4
5 #[unwind(aborts)]
6 fn panic_abort() { panic!() }
7
8 fn main() {
9     panic_abort();
10 }