summaryrefslogtreecommitdiffstats
path: root/src/test/ui/check-cfg/well-known-values.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/well-known-values.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/well-known-values.stderr')
-rw-r--r--src/test/ui/check-cfg/well-known-values.stderr53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/test/ui/check-cfg/well-known-values.stderr b/src/test/ui/check-cfg/well-known-values.stderr
deleted file mode 100644
index 29ececea5..000000000
--- a/src/test/ui/check-cfg/well-known-values.stderr
+++ /dev/null
@@ -1,53 +0,0 @@
-warning: unexpected `cfg` condition value
- --> $DIR/well-known-values.rs:7:7
- |
-LL | #[cfg(target_os = "linuz")]
- | ^^^^^^^^^^^^-------
- | |
- | help: did you mean: `"linux"`
- |
- = note: expected values for `target_os` are: aix, android, cuda, dragonfly, emscripten, espidf, freebsd, fuchsia, haiku, hermit, horizon, illumos, ios, l4re, linux, macos, netbsd, none, nto, openbsd, psp, redox, solaris, solid_asp3, tvos, uefi, unknown, vxworks, wasi, watchos, windows, xous
- = note: `#[warn(unexpected_cfgs)]` on by default
-
-warning: unexpected `cfg` condition value
- --> $DIR/well-known-values.rs:14:7
- |
-LL | #[cfg(target_has_atomic = "0")]
- | ^^^^^^^^^^^^^^^^^^^^---
- | |
- | help: did you mean: `"8"`
- |
- = note: expected values for `target_has_atomic` are: 128, 16, 32, 64, 8, ptr
-
-warning: unexpected `cfg` condition value
- --> $DIR/well-known-values.rs:21:7
- |
-LL | #[cfg(unix = "aa")]
- | ^^^^-------
- | |
- | help: remove the value
- |
- = note: no expected value for `unix`
-
-warning: unexpected `cfg` condition value
- --> $DIR/well-known-values.rs:28:7
- |
-LL | #[cfg(miri = "miri")]
- | ^^^^---------
- | |
- | help: remove the value
- |
- = note: no expected value for `miri`
-
-warning: unexpected `cfg` condition value
- --> $DIR/well-known-values.rs:35:7
- |
-LL | #[cfg(doc = "linux")]
- | ^^^----------
- | |
- | help: remove the value
- |
- = note: no expected value for `doc`
-
-warning: 5 warnings emitted
-