mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
35 lines
795 B
Rust
35 lines
795 B
Rust
//@ check-pass
|
|
//@ revisions: cargo rustc
|
|
//@ [rustc]unset-rustc-env:CARGO_CRATE_NAME
|
|
//@ [cargo]rustc-env:CARGO_CRATE_NAME=foo
|
|
//@ compile-flags: --check-cfg=cfg(feature,values("foo")) --check-cfg=cfg(no_values) -Z unstable-options
|
|
|
|
#[cfg(featur)]
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
fn feature() {}
|
|
|
|
#[cfg(featur = "foo")]
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
fn feature() {}
|
|
|
|
#[cfg(featur = "fo")]
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
fn feature() {}
|
|
|
|
#[cfg(feature = "foo")]
|
|
fn feature() {}
|
|
|
|
#[cfg(no_value)]
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
fn no_values() {}
|
|
|
|
#[cfg(no_value = "foo")]
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
fn no_values() {}
|
|
|
|
#[cfg(no_values = "bar")]
|
|
//~^ WARNING unexpected `cfg` condition value
|
|
fn no_values() {}
|
|
|
|
fn main() {}
|