rust/tests/ui/check-cfg/allow-top-level.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
248 B
Rust
Raw Normal View History

// This test check that a top-level #![allow(unexpected_cfgs)] works
//
// check-pass
// compile-flags:--check-cfg=names() -Z unstable-options
#![allow(unexpected_cfgs)]
#[cfg(FALSE)]
fn bar() {}
fn foo() {
if cfg!(FALSE) {}
}
fn main() {}