Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
3f0369e0f2e8c196d8e0324eb300fd8ee2ed51e1
/
.
/
tests
/
ui
/
check-cfg
/
unexpected-cfg-name.rs
blob: 9fc0e28a8fec0774bdb973fa3b54a33349c2c89f [
file
] [
log
] [
blame
]
// Check warning for unexpected configuration name
//
// check-pass
// compile-flags: --check-cfg=cfg() -Z unstable-options
#[
cfg
(
widnows
)]
//~^ WARNING unexpected `cfg` condition name
pub
fn
f
()
{}
#[
cfg
(
windows
)]
pub
fn
g
()
{}
pub
fn
main
()
{}