summaryrefslogtreecommitdiffstats
path: root/tests/ui/check-cfg/allow-upper-level.rs
blob: bd5c97815f2def10ea7524a8d414b0c5942c3914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// This test check that #[allow(unexpected_cfgs)] work if put on an upper level
//
// check-pass
// compile-flags: --check-cfg=cfg() -Z unstable-options

#[allow(unexpected_cfgs)]
mod aa {
    #[cfg(FALSE)]
    fn bar() {}
}

fn main() {}