9 lines
181 B
Rust
9 lines
181 B
Rust
//@ compile-flags: --cfg foo --check-cfg=cfg(foo,bar)
|
|
|
|
#[cfg(all(foo, bar))] // foo AND bar
|
|
fn foo() {}
|
|
|
|
fn main() {
|
|
foo(); //~ ERROR cannot find function `foo` in this scope
|
|
}
|