mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
517374150c
this directive prevents compiletest from adding any implicit and automatic --check-cfg arguments
14 lines
324 B
Rust
14 lines
324 B
Rust
// Check warning for unexpected cfg value
|
|
//
|
|
//@ check-pass
|
|
//@ no-auto-check-cfg
|
|
//@ revisions: empty_cfg without_names
|
|
//@ [empty_cfg]compile-flags: --check-cfg=cfg()
|
|
//@ [without_names]compile-flags: --check-cfg=cfg(any())
|
|
|
|
#[cfg(test = "value")]
|
|
//~^ WARNING unexpected `cfg` condition value
|
|
pub fn f() {}
|
|
|
|
fn main() {}
|