rust/tests/compile-fail/panic/rustc_allocator_nounwind.rs

11 lines
214 B
Rust
Raw Normal View History

2021-04-15 16:19:23 -05:00
#![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
}