2023-11-02 16:06:32 +00:00
|
|
|
// Check warning for unexpected cfg in the code.
|
2023-05-01 12:16:38 +00:00
|
|
|
//
|
|
|
|
//@ check-pass
|
2023-11-16 17:41:45 +00:00
|
|
|
//@ revisions: empty_cfg feature full
|
2023-05-01 12:16:38 +00:00
|
|
|
//@ compile-flags: -Z unstable-options
|
|
|
|
//@ [empty_cfg]compile-flags: --check-cfg=cfg()
|
|
|
|
//@ [feature]compile-flags: --check-cfg=cfg(feature,values("std"))
|
|
|
|
//@ [full]compile-flags: --check-cfg=cfg(feature,values("std")) --check-cfg=cfg()
|
|
|
|
|
|
|
|
#[cfg(unknown_key = "value")]
|
|
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
|
|
pub fn f() {}
|
|
|
|
|
|
|
|
#[cfg(test = "value")]
|
|
|
|
//~^ WARNING unexpected `cfg` condition value
|
|
|
|
pub fn f() {}
|
|
|
|
|
|
|
|
#[cfg(feature = "unk")]
|
2023-11-19 19:43:50 +00:00
|
|
|
//[empty_names_values]~^ WARNING unexpected `cfg` condition name
|
|
|
|
//[empty_cfg]~^^ WARNING unexpected `cfg` condition name
|
|
|
|
//[feature]~^^^ WARNING unexpected `cfg` condition value
|
|
|
|
//[full]~^^^^ WARNING unexpected `cfg` condition value
|
2023-05-01 12:16:38 +00:00
|
|
|
pub fn feat() {}
|
|
|
|
|
|
|
|
#[cfg(feature = "std")]
|
2023-11-19 19:43:50 +00:00
|
|
|
//[empty_names_values]~^ WARNING unexpected `cfg` condition name
|
|
|
|
//[empty_cfg]~^^ WARNING unexpected `cfg` condition name
|
2023-05-01 12:16:38 +00:00
|
|
|
pub fn feat() {}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
pub fn win() {}
|
|
|
|
|
|
|
|
#[cfg(unix)]
|
|
|
|
pub fn unix() {}
|
|
|
|
|
|
|
|
fn main() {}
|