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

10 lines
210 B
Rust

//
//@ error-pattern: `main` function not found
//@ compile-flags: --cfg foo
// main is conditionally compiled, but the conditional compilation
// is conditional too!
#[cfg_attr(foo, cfg(bar))]
fn main() { }