]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-abi_unadjusted.rs
Rollup merge of #101308 - nerdypepper:feature/is-ascii-octdigit, r=joshtriplett
[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 }