]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/abi-typo.rs
Auto merge of #103690 - GuillaumeGomez:visibility-on-demand, r=notriddle
[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 }