summaryrefslogtreecommitdiffstats
path: root/src/test/ui/check-cfg/mix.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/check-cfg/mix.stderr')
-rw-r--r--src/test/ui/check-cfg/mix.stderr174
1 files changed, 174 insertions, 0 deletions
diff --git a/src/test/ui/check-cfg/mix.stderr b/src/test/ui/check-cfg/mix.stderr
new file mode 100644
index 000000000..e51b75b3d
--- /dev/null
+++ b/src/test/ui/check-cfg/mix.stderr
@@ -0,0 +1,174 @@
+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 `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: 25 warnings emitted
+