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() {}