]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/abi-typo.fixed
Rollup merge of #105795 - nicholasbishop:bishop-stabilize-efiapi, r=joshtriplett
[rust.git] / tests / ui / suggestions / abi-typo.fixed
1 // run-rustfix
2 extern "cdecl" fn cdedl() {} //~ ERROR invalid ABI
3
4 fn main() {
5     cdedl();
6 }