]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/abi-typo.rs
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / suggestions / abi-typo.rs
1 // run-rustfix
2 extern "cdedl" fn cdedl() {} //~ ERROR invalid ABI
3
4 fn main() {
5     cdedl();
6 }