summaryrefslogtreecommitdiffstats
path: root/tests/ui/check-cfg/allow-macro-cfg.rs
blob: ea26355aca8fc1cb107a60e74b05fb345773044b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// This test check that local #[allow(unexpected_cfgs)] works
//
// check-pass
// compile-flags: --check-cfg=cfg() -Z unstable-options

#[allow(unexpected_cfgs)]
fn foo() {
    if cfg!(FALSE) {}
}

fn main() {
    #[allow(unexpected_cfgs)]
    if cfg!(FALSE) {}
}