mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
517374150c
this directive prevents compiletest from adding any implicit and automatic --check-cfg arguments
16 lines
268 B
Rust
16 lines
268 B
Rust
// This test check that local #[allow(unexpected_cfgs)] works
|
|
//
|
|
//@ check-pass
|
|
//@ no-auto-check-cfg
|
|
//@ compile-flags: --check-cfg=cfg()
|
|
|
|
#[allow(unexpected_cfgs)]
|
|
fn foo() {
|
|
if cfg!(FALSE) {}
|
|
}
|
|
|
|
fn main() {
|
|
#[allow(unexpected_cfgs)]
|
|
if cfg!(FALSE) {}
|
|
}
|