mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-18 10:38:11 +00:00
13 lines
189 B
Rust
13 lines
189 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();
|
||
|
}
|