]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-abi_unadjusted.rs
Rollup merge of #101800 - chriss0612:feat/const_split_at_mut, r=fee1-dead
[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 }