rust/tests/ui/check-cfg/exhaustive-values.rs

13 lines
338 B
Rust

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