summaryrefslogtreecommitdiffstats
path: root/tests/ui/check-cfg/mix.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/check-cfg/mix.stderr')
-rw-r--r--tests/ui/check-cfg/mix.stderr82
1 files changed, 45 insertions, 37 deletions
diff --git a/tests/ui/check-cfg/mix.stderr b/tests/ui/check-cfg/mix.stderr
index 9cf887ec7..07c514aed 100644
--- a/tests/ui/check-cfg/mix.stderr
+++ b/tests/ui/check-cfg/mix.stderr
@@ -2,28 +2,36 @@ warning: unexpected `cfg` condition name
--> $DIR/mix.rs:11:7
|
LL | #[cfg(widnows)]
- | ^^^^^^^ help: did you mean: `windows`
+ | ^^^^^^^ help: there is a config with a similar name: `windows`
|
= note: `#[warn(unexpected_cfgs)]` on by default
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:18:7
+ --> $DIR/mix.rs:15:7
+ |
+LL | #[cfg(feature)]
+ | ^^^^^^^- help: specify a config value: `= "foo"`
+ |
+ = note: expected values for `feature` are: `foo`
+
+warning: unexpected `cfg` condition value
+ --> $DIR/mix.rs:22:7
|
LL | #[cfg(feature = "bar")]
| ^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:22:7
+ --> $DIR/mix.rs:26:7
|
LL | #[cfg(feature = "zebra")]
| ^^^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:26:12
+ --> $DIR/mix.rs:30:12
|
LL | #[cfg_attr(uu, test)]
| ^^
@@ -37,146 +45,146 @@ 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
+ --> $DIR/mix.rs:39:10
|
LL | cfg!(widnows);
- | ^^^^^^^ help: did you mean: `windows`
+ | ^^^^^^^ help: there is a config with a similar name: `windows`
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:38:10
+ --> $DIR/mix.rs:42:10
|
LL | cfg!(feature = "bar");
| ^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:40:10
+ --> $DIR/mix.rs:44:10
|
LL | cfg!(feature = "zebra");
| ^^^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:42:10
+ --> $DIR/mix.rs:46:10
|
LL | cfg!(xxx = "foo");
| ^^^^^^^^^^^
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:44:10
+ --> $DIR/mix.rs:48:10
|
LL | cfg!(xxx);
| ^^^
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:46:14
+ --> $DIR/mix.rs:50:14
|
LL | cfg!(any(xxx, windows));
| ^^^
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:48:14
+ --> $DIR/mix.rs:52:14
|
LL | cfg!(any(feature = "bad", windows));
| ^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:50:23
+ --> $DIR/mix.rs:54:23
|
LL | cfg!(any(windows, xxx));
| ^^^
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:52:20
+ --> $DIR/mix.rs:56:20
|
LL | cfg!(all(unix, xxx));
| ^^^
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:54:14
+ --> $DIR/mix.rs:58:14
|
LL | cfg!(all(aa, bb));
| ^^
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:54:18
+ --> $DIR/mix.rs:58:18
|
LL | cfg!(all(aa, bb));
| ^^
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:57:14
+ --> $DIR/mix.rs:61:14
|
LL | cfg!(any(aa, bb));
| ^^
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:57:18
+ --> $DIR/mix.rs:61:18
|
LL | cfg!(any(aa, bb));
| ^^
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:60:20
+ --> $DIR/mix.rs:64:20
|
LL | cfg!(any(unix, feature = "zebra"));
| ^^^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:62:14
+ --> $DIR/mix.rs:66:14
|
LL | cfg!(any(xxx, feature = "zebra"));
| ^^^
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:62:19
+ --> $DIR/mix.rs:66:19
|
LL | cfg!(any(xxx, feature = "zebra"));
| ^^^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:65:14
+ --> $DIR/mix.rs:69:14
|
LL | cfg!(any(xxx, unix, xxx));
| ^^^
warning: unexpected `cfg` condition name
- --> $DIR/mix.rs:65:25
+ --> $DIR/mix.rs:69:25
|
LL | cfg!(any(xxx, unix, xxx));
| ^^^
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:68:14
+ --> $DIR/mix.rs:72:14
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
| ^^^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:68:33
+ --> $DIR/mix.rs:72:33
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
| ^^^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
warning: unexpected `cfg` condition value
- --> $DIR/mix.rs:68:52
+ --> $DIR/mix.rs:72:52
|
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
| ^^^^^^^^^^^^^^^^^
|
- = note: expected values for `feature` are: foo
+ = note: expected values for `feature` are: `foo`
-warning: 27 warnings emitted
+warning: 28 warnings emitted