rust/tests/ui/check-cfg/empty-values.rs
2023-01-11 09:32:08 +00:00

11 lines
216 B
Rust

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