rust/tests/run-make-fulldeps/link-dedup/depb.rs
2023-01-11 09:32:08 +00:00

9 lines
144 B
Rust

#![feature(link_cfg)]
#![crate_type = "rlib"]
#[link(name = "testb", cfg(foo))]
extern "C" {}
#[link(name = "testb", cfg(bar))]
extern "C" {}