]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cfg/cfg-attr-cfg.rs
Rollup merge of #101388 - compiler-errors:issue-101376, r=fee1-dead
[rust.git] / src / test / ui / cfg / cfg-attr-cfg.rs
1 // run-pass
2 // main is conditionally compiled, but the conditional compilation
3 // is conditional too!
4
5 // pretty-expanded FIXME #23616
6
7 #[cfg_attr(foo, cfg(bar))]
8 fn main() { }