rust/tests/ui/cfg/cfg-attr-cfg.rs
2024-02-16 20:02:50 +00:00

9 lines
179 B
Rust

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