Files
rust/tests/ui/suggestions/abi-typo.fixed

7 lines
95 B
Rust
Raw Normal View History

//@ run-rustfix
extern "cdecl" fn cdedl() {} //~ ERROR invalid ABI
fn main() {
cdedl();
}