summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/rlib-format-packed-bundled-libs/rust_dep_up.rs
blob: edcd7c5212984f3b31d2068646ca3bf29a760584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[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);
    }
}