about summary refs log tree commit diff
path: root/tests/ui/check-cfg/allow-macro-cfg.rs
blob: b3c706d6d2b74a352eb604b95904bb7ed9f90fd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This test check that local #[allow(unexpected_cfgs)] works
//
//@ check-pass
//@ no-auto-check-cfg
//@ compile-flags: --check-cfg=cfg()

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

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