mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +00:00
14 lines
211 B
Rust
14 lines
211 B
Rust
![]() |
// compile-flags:-C panic=unwind
|
||
|
// no-prefer-dynamic
|
||
|
|
||
|
#![crate_type = "rlib"]
|
||
|
#![no_std]
|
||
|
#![feature(c_unwind)]
|
||
|
|
||
|
extern "C-unwind" fn foo() {}
|
||
|
|
||
|
fn bar() {
|
||
|
let ptr: extern "C-unwind" fn() = foo;
|
||
|
ptr();
|
||
|
}
|