rust/tests/ui/conditional-compilation/test-cfg.rs
2023-01-11 09:32:08 +00:00

9 lines
155 B
Rust

// compile-flags: --cfg foo
#[cfg(all(foo, bar))] // foo AND bar
fn foo() {}
fn main() {
foo(); //~ ERROR cannot find function `foo` in this scope
}