rust/tests/run-make/link-dedup/depb.rs
2023-03-30 07:34:55 -05: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" {}