8 lines
116 B
Rust
8 lines
116 B
Rust
//@ no-prefer-dynamic
|
|
|
|
#![feature(link_cfg)]
|
|
#![crate_type = "rlib"]
|
|
|
|
#[link(name = "foo", cfg(foo))]
|
|
extern "C" {}
|