]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/abi-typo.rs
Rollup merge of #104952 - jyn514:setup, r=Mark-Simulacrum
[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 }