rust/tests/ui/panic-runtime/auxiliary/needs-unwind.rs
2024-02-16 20:02:50 +00:00

13 lines
191 B
Rust

//@ compile-flags:-C panic=unwind
//@ no-prefer-dynamic
#![crate_type = "rlib"]
#![no_std]
extern "C-unwind" fn foo() {}
fn bar() {
let ptr: extern "C-unwind" fn() = foo;
ptr();
}