2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `widnows`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:13:7
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
|
|
|
|
LL | #[cfg(widnows)]
|
2023-04-30 19:09:15 +02:00
|
|
|
| ^^^^^^^ help: there is a config with a similar name: `windows`
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(widnows)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-02-20 01:26:52 +01:00
|
|
|
= note: `#[warn(unexpected_cfgs)]` on by default
|
|
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: (none)
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:17:7
|
2023-04-30 19:09:15 +02:00
|
|
|
|
|
|
|
|
|
LL | #[cfg(feature)]
|
|
|
|
|
| ^^^^^^^- help: specify a config value: `= "foo"`
|
|
|
|
|
|
|
|
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2023-04-30 19:09:15 +02:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `bar`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:24:7
|
2022-07-20 17:31:15 +02:00
|
|
|
|
|
|
|
|
|
LL | #[cfg(feature = "bar")]
|
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("bar"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-07-20 17:31:15 +02:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `zebra`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:28:7
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
|
|
|
|
LL | #[cfg(feature = "zebra")]
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("zebra"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-02-20 01:26:52 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `uu`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:32:12
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
2024-09-17 23:55:53 +02:00
|
|
|
LL | #[cfg_attr(uu, unix)]
|
2022-02-20 01:26:52 +01:00
|
|
|
| ^^
|
2023-10-12 16:46:27 +02:00
|
|
|
|
|
2025-01-30 13:09:14 -08:00
|
|
|
= help: expected names are: `feature` and 31 more
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(uu)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-02-20 01:26:52 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `widnows`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:41:10
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(widnows);
|
2023-04-30 19:09:15 +02:00
|
|
|
| ^^^^^^^ help: there is a config with a similar name: `windows`
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(widnows)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-02-20 01:26:52 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `bar`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:44:10
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
2022-07-20 17:31:15 +02:00
|
|
|
LL | cfg!(feature = "bar");
|
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("bar"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-07-20 17:31:15 +02:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `zebra`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:46:10
|
2022-07-20 17:31:15 +02:00
|
|
|
|
|
2022-02-20 01:26:52 +01:00
|
|
|
LL | cfg!(feature = "zebra");
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("zebra"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-02-20 01:26:52 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `xxx`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:48:10
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(xxx = "foo");
|
|
|
|
|
| ^^^^^^^^^^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(xxx, values("foo"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-02-20 01:26:52 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `xxx`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:50:10
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(xxx);
|
|
|
|
|
| ^^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(xxx)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-02-20 01:26:52 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `xxx`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:52:14
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, windows));
|
|
|
|
|
| ^^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(xxx)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-02-20 01:26:52 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `bad`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:54:14
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(feature = "bad", windows));
|
2022-07-20 17:31:15 +02:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2022-02-20 01:26:52 +01:00
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("bad"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-02-20 01:26:52 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `xxx`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:56:23
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(windows, xxx));
|
|
|
|
|
| ^^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(xxx)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `xxx`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:58:20
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(all(unix, xxx));
|
|
|
|
|
| ^^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(xxx)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `aa`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:60:14
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(all(aa, bb));
|
|
|
|
|
| ^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(aa)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `bb`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:60:18
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(all(aa, bb));
|
|
|
|
|
| ^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(bb)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `aa`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:63:14
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(aa, bb));
|
|
|
|
|
| ^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(aa)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `bb`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:63:18
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(aa, bb));
|
|
|
|
|
| ^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(bb)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `zebra`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:66:20
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(unix, feature = "zebra"));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("zebra"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `xxx`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:68:14
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, feature = "zebra"));
|
|
|
|
|
| ^^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(xxx)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `zebra`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:68:19
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, feature = "zebra"));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("zebra"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `xxx`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:71:14
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, unix, xxx));
|
|
|
|
|
| ^^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(xxx)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition name: `xxx`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:71:25
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(any(xxx, unix, xxx));
|
|
|
|
|
| ^^^
|
2023-11-22 16:50:24 +01:00
|
|
|
|
|
|
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(xxx)`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `zebra`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:74:14
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("zebra"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `zebra`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:74:33
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("zebra"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2023-10-12 16:49:56 +02:00
|
|
|
warning: unexpected `cfg` condition value: `zebra`
|
2024-04-09 14:07:30 +02:00
|
|
|
--> $DIR/mix.rs:74:52
|
2022-03-19 10:23:09 +01:00
|
|
|
|
|
|
|
|
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2023-04-30 15:52:44 +02:00
|
|
|
= note: expected values for `feature` are: `foo`
|
2023-11-22 16:50:24 +01:00
|
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("zebra"))`
|
2024-02-25 15:45:43 +01:00
|
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
2022-03-19 10:23:09 +01:00
|
|
|
|
2024-11-29 18:04:36 +01:00
|
|
|
warning: 26 warnings emitted
|
2022-02-20 01:26:52 +01:00
|
|
|
|