about summary refs log tree commit diff
path: root/tests/run-make/staticlib-thin-archive/rust_lib.rs
blob: c76b0f25433764b44024797ac597a2c6888a3f7b (plain)
1
2
3
4
5
6
#![crate_type = "rlib"]

#[link(name = "thin_archive", kind = "static")]
extern "C" {
    pub fn simple_fn();
}