summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/abi-typo.rs
blob: 6d80db522ebc1eb3577eb72063973818eb7f835d (plain)
1
2
3
4
5
6
// run-rustfix
extern "cdedl" fn cdedl() {} //~ ERROR invalid ABI

fn main() {
    cdedl();
}