mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
15 lines
265 B
Rust
15 lines
265 B
Rust
![]() |
// This test check that local #[allow(unexpected_cfgs)] works
|
||
|
//
|
||
|
// check-pass
|
||
|
// compile-flags:--check-cfg=names() -Z unstable-options
|
||
|
|
||
|
#[allow(unexpected_cfgs)]
|
||
|
fn foo() {
|
||
|
if cfg!(FALSE) {}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
#[allow(unexpected_cfgs)]
|
||
|
if cfg!(FALSE) {}
|
||
|
}
|