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

#![allow(unexpected_cfgs)]

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

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

fn main() {}