2022-02-20 00:26:52 +00:00
|
|
|
warning: unexpected `cfg` condition name
|
|
|
|
--> $DIR/mix.rs:11:7
|
|
|
|
|
|
|
|
|
LL | #[cfg(widnows)]
|
2023-04-30 13:52:44 +00:00
|
|
|
| ^^^^^^^ help: there is an config with a similar name: `windows`
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
|
= note: `#[warn(unexpected_cfgs)]` on by default
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:18:7
|
|
|
|
|
|
|
|
|
LL | #[cfg(feature = "bar")]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-07-20 15:31:15 +00:00
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
|
|
|
--> $DIR/mix.rs:22:7
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
|
LL | #[cfg(feature = "zebra")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:26:12
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
|
LL | #[cfg_attr(uu, test)]
|
|
|
|
| ^^
|
|
|
|
|
2022-08-11 17:50:48 +00:00
|
|
|
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
|
|
|
|
|
2022-02-20 00:26:52 +00:00
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:35:10
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(widnows);
|
2023-04-30 13:52:44 +00:00
|
|
|
| ^^^^^^^ help: there is an config with a similar name: `windows`
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
|
|
|
--> $DIR/mix.rs:38:10
|
|
|
|
|
|
2022-07-20 15:31:15 +00:00
|
|
|
LL | cfg!(feature = "bar");
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-07-20 15:31:15 +00:00
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
|
|
|
--> $DIR/mix.rs:40:10
|
|
|
|
|
|
2022-02-20 00:26:52 +00:00
|
|
|
LL | cfg!(feature = "zebra");
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:42:10
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(xxx = "foo");
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:44:10
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(xxx);
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:46:14
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, windows));
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:48:14
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(feature = "bad", windows));
|
2022-07-20 15:31:15 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2022-02-20 00:26:52 +00:00
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-02-20 00:26:52 +00:00
|
|
|
|
2022-03-19 09:23:09 +00:00
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:50:23
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(windows, xxx));
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:52:20
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(all(unix, xxx));
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:54:14
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(all(aa, bb));
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:54:18
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(all(aa, bb));
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:57:14
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(aa, bb));
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:57:18
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(aa, bb));
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:60:20
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(unix, feature = "zebra"));
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:62:14
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, feature = "zebra"));
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:62:19
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, feature = "zebra"));
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:65:14
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, unix, xxx));
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition name
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:65:25
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, unix, xxx));
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:68:14
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:68:33
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
warning: unexpected `cfg` condition value
|
2022-07-20 15:31:15 +00:00
|
|
|
--> $DIR/mix.rs:68:52
|
2022-03-19 09:23:09 +00:00
|
|
|
|
|
|
|
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-04-30 13:52:44 +00:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2022-03-19 09:23:09 +00:00
|
|
|
|
2022-08-11 17:50:48 +00:00
|
|
|
warning: 27 warnings emitted
|
2022-02-20 00:26:52 +00:00
|
|
|
|