summaryrefslogtreecommitdiffstats
path: root/tests/run-make/lto-no-link-whole-rlib/lib2.rs
blob: 2dec2a2718e83a197c6656c1aed89f752ee1dfe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![crate_type = "rlib"]

extern crate lib1;

#[link(name = "bar", kind = "static")]
extern "C" {
    fn foo() -> i32;
}

pub fn foo2() -> i32 {
    unsafe { foo() }
}