about summary refs log tree commit diff
path: root/tests/ui/suggestions/abi-typo.fixed
blob: ae507c3e48fb7a1e3cbe2f7b227d94db60bf5f32 (plain)
1
2
3
4
5
6
//@ run-rustfix
extern "system" fn systen() {} //~ ERROR invalid ABI

fn main() {
    systen();
}