mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
433da1fc04
They pass fine.
20 lines
259 B
Rust
20 lines
259 B
Rust
#[no_mangle]
|
|
pub extern "C" fn foo() -> i32 {
|
|
3
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn bar() -> i32 {
|
|
5
|
|
}
|
|
|
|
#[link(name = "test", kind = "static")]
|
|
extern "C" {
|
|
fn add() -> i32;
|
|
}
|
|
|
|
fn main() {
|
|
let back = unsafe { add() };
|
|
assert_eq!(8, back);
|
|
}
|