summaryrefslogtreecommitdiffstats
path: root/tests/run-make/link-cfg/dep.rs
blob: 40de77f05b3f67ba8f6ba43e210a4b0e3ac463fa (plain)
1
2
3
4
5
6
7
8
#![feature(link_cfg)]
#![crate_type = "rlib"]

#[link(name = "return1", cfg(foo))]
#[link(name = "return2", cfg(bar))]
extern "C" {
    pub fn my_function() -> i32;
}