11 lines
214 B
Rust
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
|
|
}
|