summaryrefslogtreecommitdiffstats
path: root/src/test/ui/conditional-compilation/test-cfg.rs
blob: 8750bae002873be65150a68703a03a830640af22 (plain)
1
2
3
4
5
6
7
8
// compile-flags: --cfg foo

#[cfg(all(foo, bar))] // foo AND bar
fn foo() {}

fn main() {
    foo(); //~ ERROR cannot find function `foo` in this scope
}