blob: 18b502736f7ba10532518bbe6bade52e93316f13 (
plain)
1
2
3
4
5
6
7
8
9
|
#[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() {}
|