rust/tests/run-make/rlib-format-packed-bundled-libs/rust_dep_up.rs
2023-01-11 09:32:08 +00:00

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);
}
}