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

14 lines
251 B
Rust

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