summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-abi_unadjusted.rs
blob: 35a7d73288b5d2747988b00e3b58bec2f8a9ab7e (plain)
1
2
3
4
5
6
7
extern "unadjusted" fn foo() {
//~^ ERROR: unadjusted ABI is an implementation detail and perma-unstable
}

fn main() {
    foo();
}