rust/tests/ui/check-cfg/exhaustive-names.rs
2024-02-16 20:02:50 +00:00

11 lines
215 B
Rust

// Check warning for unexpected cfg
//
//@ check-pass
//@ compile-flags: --check-cfg=cfg() -Z unstable-options
#[cfg(unknown_key = "value")]
//~^ WARNING unexpected `cfg` condition name
pub fn f() {}
fn main() {}