mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
11 lines
125 B
Rust
11 lines
125 B
Rust
#[link(name = "test", kind = "static")]
|
|
extern "C" {
|
|
fn foo() -> i32;
|
|
}
|
|
|
|
fn main() {
|
|
unsafe {
|
|
foo();
|
|
}
|
|
}
|