mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
280 B
Rust
14 lines
280 B
Rust
#[link(name = "native_dep_2", kind = "static")]
|
|
#[link(name = "native_dep_3", kind = "static")]
|
|
extern "C" {
|
|
fn native_f2() -> i32;
|
|
fn native_f3() -> i32;
|
|
}
|
|
|
|
pub fn rust_dep_up() {
|
|
unsafe {
|
|
assert!(native_f2() == 2);
|
|
assert!(native_f3() == 3);
|
|
}
|
|
}
|