]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/abi-typo.rs
Auto merge of #106977 - michaelwoerister:unord_id_collections, r=oli-obk
[rust.git] / tests / ui / suggestions / abi-typo.rs
1 // run-rustfix
2 extern "cdedl" fn cdedl() {} //~ ERROR invalid ABI
3
4 fn main() {
5     cdedl();
6 }