mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 09:13:07 +03:00
13 lines
132 B
Rust
13 lines
132 B
Rust
extern crate a;
|
|
|
|
#[link(name = "b", kind = "static")]
|
|
extern "C" {
|
|
pub fn b();
|
|
}
|
|
|
|
fn main() {
|
|
unsafe {
|
|
b();
|
|
}
|
|
}
|