rust/tests/ui/extern/extern-ffi-fn-with-body.rs

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

12 lines
172 B
Rust
Raw Normal View History

extern "C" {
fn foo() -> i32 { //~ ERROR incorrect function inside `extern` block
return 0;
}
}
extern "C" fn bar() -> i32 {
return 0;
}
fn main() {}