mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
232 B
Rust
14 lines
232 B
Rust
#[link(name = "native_dep_1", kind = "static")]
|
|
extern "C" {
|
|
fn native_f1() -> i32;
|
|
}
|
|
|
|
extern crate rust_dep_up;
|
|
|
|
pub fn rust_dep_local() {
|
|
unsafe {
|
|
assert!(native_f1() == 1);
|
|
}
|
|
rust_dep_up::rust_dep_up();
|
|
}
|