mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-04 05:57:36 +00:00
11 lines
215 B
Rust
11 lines
215 B
Rust
![]() |
// Check warning for unexpected cfg
|
||
|
//
|
||
|
// check-pass
|
||
|
// compile-flags: --check-cfg=names() -Z unstable-options
|
||
|
|
||
|
#[cfg(unknown_key = "value")]
|
||
|
//~^ WARNING unexpected `cfg` condition name
|
||
|
pub fn f() {}
|
||
|
|
||
|
fn main() {}
|