mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
517374150c
this directive prevents compiletest from adding any implicit and automatic --check-cfg arguments
20 lines
436 B
Rust
20 lines
436 B
Rust
// Check for unexpected configuration value in the code.
|
|
//
|
|
//@ check-pass
|
|
//@ no-auto-check-cfg
|
|
//@ compile-flags: --cfg=feature="rand"
|
|
//@ 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() {}
|