mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-25 11:04:53 +00:00
10 lines
199 B
Rust
10 lines
199 B
Rust
#[link(name = "my_c_library")]
|
|
extern "C" {
|
|
fn my_c_function(x: i32) -> bool;
|
|
}
|
|
|
|
#[no_mangle]
|
|
extern "C" pub fn id(x: i32) -> i32 { x } //~ ERROR expected `fn`, found keyword `pub`
|
|
|
|
fn main() {}
|