rust/tests/ui/feature-gates/feature-gate-link_cfg.rs
2025-12-06 10:22:13 +01:00

5 lines
86 B
Rust

#[link(name = "foo", cfg(false))]
//~^ ERROR: is unstable
extern "C" {}
fn main() {}