mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
8 lines
232 B
Rust
8 lines
232 B
Rust
//@ error-pattern: `main` function not found
|
|
//@ compile-flags: --cfg foo --check-cfg=cfg(foo,bar)
|
|
|
|
// main is conditionally compiled, but the conditional compilation
|
|
// is conditional too!
|
|
|
|
#[cfg_attr(foo, cfg(bar))]
|
|
fn main() { }
|