blob: ef0590d76d2c0ee82eebe48e0607c9e95b385647 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | // Check that no warning is emitted for unknown cfg value
//
//@ check-pass
//@ no-auto-check-cfg
//@ revisions: simple mixed with_values
//@ compile-flags: --check-cfg=cfg(simple,mixed,with_values)
//@ [simple]compile-flags: --check-cfg=cfg(foo,values(any()))
//@ [mixed]compile-flags: --check-cfg=cfg(foo) --check-cfg=cfg(foo,values(any()))
//@ [with_values]compile-flags:--check-cfg=cfg(foo,values(any())) --check-cfg=cfg(foo,values("aa"))
#[cfg(foo = "value")]
pub fn f() {}
#[cfg(foo)]
pub fn f() {}
fn main() {}
 |