mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
13 lines
207 B
Rust
13 lines
207 B
Rust
// Test that the "C-unwind" ABI is feature-gated, and *can* be used when the
|
|
// `c_unwind` feature gate is enabled.
|
|
|
|
// check-pass
|
|
|
|
#![feature(c_unwind)]
|
|
|
|
extern "C-unwind" fn f() {}
|
|
|
|
fn main() {
|
|
f();
|
|
}
|