mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +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() {}
|