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

fn main() {
    cdedl();
}