2023-05-01 07:16:38 -05:00
|
|
|
// Check warning for unexpected configuration name
|
|
|
|
//
|
|
|
|
// check-pass
|
2023-11-16 11:41:45 -06:00
|
|
|
// compile-flags: --check-cfg=cfg() -Z unstable-options
|
2023-05-01 07:16:38 -05:00
|
|
|
|
|
|
|
#[cfg(widnows)]
|
|
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
|
|
pub fn f() {}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
pub fn g() {}
|
|
|
|
|
|
|
|
pub fn main() {}
|