]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/abi-typo.fixed
Rollup merge of #105505 - WaffleLapkin:yeet_unused_parens_lint, r=fee1-dead
[rust.git] / src / test / ui / suggestions / abi-typo.fixed
1 // run-rustfix
2 extern "cdecl" fn cdedl() {} //~ ERROR invalid ABI
3
4 fn main() {
5     cdedl();
6 }