Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
check-cfg
/
empty-values.rs
blob: 9bda42e5d15fe703fe68d26872b51d8f1e624ce2 [
file
] [
log
] [
blame
]
// Check warning for unexpected cfg value
//
// check-pass
// compile-flags: --check-cfg=values() -Z unstable-options
#[
cfg
(
test
=
"value"
)]
//~^ WARNING unexpected `cfg` condition value
pub
fn
f
()
{}
fn
main
()
{}