mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
172 B
Rust
12 lines
172 B
Rust
extern "C" {
|
|
fn foo() -> i32 { //~ ERROR incorrect function inside `extern` block
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
extern "C" fn bar() -> i32 {
|
|
return 0;
|
|
}
|
|
|
|
fn main() {}
|