]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/abi-typo.fixed
Auto merge of #106981 - joboet:std_remove_box_syntax, r=thomcc
[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 }