mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
20 lines
600 B
Rust
20 lines
600 B
Rust
// Check that we detect unexpected value when none are allowed
|
|
//
|
|
//@ check-pass
|
|
//@ revisions: simple mixed empty
|
|
//@ compile-flags: -Z unstable-options
|
|
//@ compile-flags: --check-cfg=cfg(values,simple,mixed,empty)
|
|
//@ [simple]compile-flags: --check-cfg=cfg(test) --check-cfg=cfg(feature)
|
|
//@ [mixed]compile-flags: --check-cfg=cfg(test,feature)
|
|
//@ [empty]compile-flags: --check-cfg=cfg(test,feature,values(none()))
|
|
|
|
#[cfg(feature = "foo")]
|
|
//~^ WARNING unexpected `cfg` condition value
|
|
fn do_foo() {}
|
|
|
|
#[cfg(test = "foo")]
|
|
//~^ WARNING unexpected `cfg` condition value
|
|
fn do_foo() {}
|
|
|
|
fn main() {}
|