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

9 lines
156 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
}