]> git.proxmox.com Git - rustc.git/blob - src/test/ui/unwind-abis/feature-gate-c-unwind-enabled.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / test / ui / unwind-abis / feature-gate-c-unwind-enabled.rs
1 // Test that the "C-unwind" ABI is feature-gated, and *can* be used when the
2 // `c_unwind` feature gate is enabled.
3
4 // check-pass
5
6 #![feature(c_unwind)]
7
8 extern "C-unwind" fn f() {}
9
10 fn main() {
11 f();
12 }