]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-abi_unadjusted.rs
Auto merge of #94286 - matthiaskrgr:rollup-6i1spjg, r=matthiaskrgr
[rust.git] / src / test / ui / feature-gates / feature-gate-abi_unadjusted.rs
1 extern "unadjusted" fn foo() {
2 //~^ ERROR: unadjusted ABI is an implementation detail and perma-unstable
3 }
4
5 fn main() {
6     foo();
7 }