2023-05-01 07:16:38 -05:00
|
|
|
// Check warning for unexpected configuration name
|
|
|
|
//
|
|
|
|
//@ check-pass
|
2024-04-09 07:07:30 -05:00
|
|
|
//@ no-auto-check-cfg
|
2024-02-25 07:56:14 -06:00
|
|
|
//@ compile-flags: --check-cfg=cfg()
|
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() {}
|