rust/tests/compile-fail/panic/rustc_allocator_nounwind.rs
2021-05-31 11:15:29 +08:00

11 lines
214 B
Rust

#![feature(rustc_attrs, c_unwind)]
#[rustc_allocator_nounwind]
extern "C-unwind" fn nounwind() {
panic!();
}
fn main() {
nounwind(); //~ ERROR unwinding past a stack frame that does not allow unwinding
}