mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
183 lines
4.4 KiB
Plaintext
183 lines
4.4 KiB
Plaintext
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:11:7
|
|
|
|
|
LL | #[cfg(widnows)]
|
|
| ^^^^^^^ help: did you mean: `windows`
|
|
|
|
|
= note: `#[warn(unexpected_cfgs)]` on by default
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:18:7
|
|
|
|
|
LL | #[cfg(feature = "bar")]
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:22:7
|
|
|
|
|
LL | #[cfg(feature = "zebra")]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:26:12
|
|
|
|
|
LL | #[cfg_attr(uu, test)]
|
|
| ^^
|
|
|
|
warning: unexpected condition value `bar` for condition name `feature`
|
|
|
|
|
= help: was set with `--cfg` but isn't in the `--check-cfg` expected values
|
|
|
|
warning: unexpected `unknown_name` as condition name
|
|
|
|
|
= help: was set with `--cfg` but isn't in the `--check-cfg` expected names
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:35:10
|
|
|
|
|
LL | cfg!(widnows);
|
|
| ^^^^^^^ help: did you mean: `windows`
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:38:10
|
|
|
|
|
LL | cfg!(feature = "bar");
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:40:10
|
|
|
|
|
LL | cfg!(feature = "zebra");
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:42:10
|
|
|
|
|
LL | cfg!(xxx = "foo");
|
|
| ^^^^^^^^^^^
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:44:10
|
|
|
|
|
LL | cfg!(xxx);
|
|
| ^^^
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:46:14
|
|
|
|
|
LL | cfg!(any(xxx, windows));
|
|
| ^^^
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:48:14
|
|
|
|
|
LL | cfg!(any(feature = "bad", windows));
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:50:23
|
|
|
|
|
LL | cfg!(any(windows, xxx));
|
|
| ^^^
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:52:20
|
|
|
|
|
LL | cfg!(all(unix, xxx));
|
|
| ^^^
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:54:14
|
|
|
|
|
LL | cfg!(all(aa, bb));
|
|
| ^^
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:54:18
|
|
|
|
|
LL | cfg!(all(aa, bb));
|
|
| ^^
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:57:14
|
|
|
|
|
LL | cfg!(any(aa, bb));
|
|
| ^^
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:57:18
|
|
|
|
|
LL | cfg!(any(aa, bb));
|
|
| ^^
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:60:20
|
|
|
|
|
LL | cfg!(any(unix, feature = "zebra"));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:62:14
|
|
|
|
|
LL | cfg!(any(xxx, feature = "zebra"));
|
|
| ^^^
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:62:19
|
|
|
|
|
LL | cfg!(any(xxx, feature = "zebra"));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:65:14
|
|
|
|
|
LL | cfg!(any(xxx, unix, xxx));
|
|
| ^^^
|
|
|
|
warning: unexpected `cfg` condition name
|
|
--> $DIR/mix.rs:65:25
|
|
|
|
|
LL | cfg!(any(xxx, unix, xxx));
|
|
| ^^^
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:68:14
|
|
|
|
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:68:33
|
|
|
|
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: unexpected `cfg` condition value
|
|
--> $DIR/mix.rs:68:52
|
|
|
|
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: foo
|
|
|
|
warning: 27 warnings emitted
|
|
|