summaryrefslogtreecommitdiffstats
path: root/src/test/ui/check-cfg/mix.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/check-cfg/mix.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/check-cfg/mix.stderr')
-rw-r--r--src/test/ui/check-cfg/mix.stderr182
1 files changed, 0 insertions, 182 deletions
diff --git a/src/test/ui/check-cfg/mix.stderr b/src/test/ui/check-cfg/mix.stderr
deleted file mode 100644
index 9cf887ec7..000000000
--- a/src/test/ui/check-cfg/mix.stderr
+++ /dev/null
@@ -1,182 +0,0 @@
-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
-