summaryrefslogtreecommitdiff
path: root/tests/ui/check-cfg/order-independant.rs
blob: ce056b8dcd6f858c7159488ed47d4bc46399f41d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass
// revisions: names_before names_after
// compile-flags: -Z unstable-options
// compile-flags: --check-cfg=names(names_before,names_after)
// [names_before]compile-flags: --check-cfg=names(a) --check-cfg=values(a,"b")
// [names_after]compile-flags: --check-cfg=values(a,"b") --check-cfg=names(a)

#[cfg(a)]
//~^ WARNING unexpected `cfg` condition value
fn my_cfg() {}

#[cfg(a = "unk")]
//~^ WARNING unexpected `cfg` condition value
fn my_cfg() {}

fn main() {}