rust/tests/ui/check-cfg/allow-top-level.rs
Urgau 517374150c compiletest: add no-auto-check-cfg directive
this directive prevents compiletest from adding any implicit and
automatic --check-cfg arguments
2024-05-04 11:30:38 +02:00

17 lines
251 B
Rust

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