summaryrefslogtreecommitdiff
path: root/tests/ui/unwind-abis/feature-gate-c-unwind.rs
blob: ba72f74f20ce65f402db7de3a0c300b60385d930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Test that the "C-unwind" ABI is feature-gated, and cannot be used when the
// `c_unwind` feature gate is not used.

#![allow(ffi_unwind_calls)]
//~^ WARNING unknown lint: `ffi_unwind_calls`
//~| WARNING unknown lint: `ffi_unwind_calls`

extern "C-unwind" fn f() {}
//~^ ERROR C-unwind ABI is experimental and subject to change [E0658]

fn main() {
    f();
}