2023-05-01 14:16:38 +02:00
|
|
|
// Check warning for unexpected configuration name
|
|
|
|
//
|
|
|
|
//@ check-pass
|
2024-04-09 14:07:30 +02:00
|
|
|
//@ no-auto-check-cfg
|
2024-02-25 14:56:14 +01:00
|
|
|
//@ compile-flags: --check-cfg=cfg()
|
2023-05-01 14:16:38 +02:00
|
|
|
|
|
|
|
#[cfg(widnows)]
|
|
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
|
|
pub fn f() {}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
pub fn g() {}
|
|
|
|
|
|
|
|
pub fn main() {}
|