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

#![allow(unexpected_cfgs)]

#[cfg(false)]
fn bar() {}

fn foo() {
    if cfg!(FALSE) {}
}

fn main() {}