mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
19 lines
431 B
Rust
19 lines
431 B
Rust
// Check for unexpected configuration value in the code.
|
|
//
|
|
// check-pass
|
|
// compile-flags: --cfg=feature="rand" -Z unstable-options
|
|
// compile-flags: --check-cfg=cfg(feature,values("serde","full"))
|
|
|
|
#[cfg(feature = "sedre")]
|
|
//~^ WARNING unexpected `cfg` condition value
|
|
pub fn f() {}
|
|
|
|
#[cfg(feature = "serde")]
|
|
pub fn g() {}
|
|
|
|
#[cfg(feature = "rand")]
|
|
//~^ WARNING unexpected `cfg` condition value
|
|
pub fn h() {}
|
|
|
|
pub fn main() {}
|