mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
13 lines
345 B
Rust
13 lines
345 B
Rust
// Check warning for unexpected cfg
|
|
//
|
|
// check-pass
|
|
// revisions: empty_names exhaustive_names
|
|
// [empty_names]compile-flags: --check-cfg=names() -Z unstable-options
|
|
// [exhaustive_names]compile-flags: --check-cfg=cfg() -Z unstable-options
|
|
|
|
#[cfg(unknown_key = "value")]
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
pub fn f() {}
|
|
|
|
fn main() {}
|