rustc/tests/ui/cfg/cfg-attr-cfg.rs
2025-02-17 11:14:05 +01:00

8 lines
148 B
Rust

//@ run-pass
// main is conditionally compiled, but the conditional compilation
// is conditional too!
#[cfg_attr(FALSE, cfg(bar))]
fn main() { }