mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +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() {}
|