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

fn main() {
    systen();
}