]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/abi-typo.fixed
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[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 }