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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
94 B
Rust
Raw Normal View History

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