]> git.proxmox.com Git - rustc.git/blob - src/test/ui/check-cfg/well-known-values.stderr
New upstream version 1.61.0+dfsg1
[rustc.git] / src / test / ui / check-cfg / well-known-values.stderr
1 warning: unexpected `cfg` condition value
2 --> $DIR/well-known-values.rs:7:7
3 |
4 LL | #[cfg(target_os = "linuz")]
5 | ^^^^^^^^^^^^-------
6 | |
7 | help: did you mean: `"linux"`
8 |
9 = note: `#[warn(unexpected_cfgs)]` on by default
10 = note: expected values for `target_os` are: android, cuda, dragonfly, emscripten, espidf, freebsd, fuchsia, haiku, hermit, horizon, illumos, ios, l4re, linux, macos, netbsd, none, openbsd, psp, redox, solaris, solid_asp3, tvos, uefi, unknown, vxworks, wasi, windows
11
12 warning: unexpected `cfg` condition value
13 --> $DIR/well-known-values.rs:14:7
14 |
15 LL | #[cfg(target_has_atomic = "0")]
16 | ^^^^^^^^^^^^^^^^^^^^---
17 | |
18 | help: did you mean: `"8"`
19 |
20 = note: expected values for `target_has_atomic` are: 128, 16, 32, 64, 8, ptr
21
22 warning: unexpected `cfg` condition value
23 --> $DIR/well-known-values.rs:21:7
24 |
25 LL | #[cfg(unix = "aa")]
26 | ^^^^-------
27 | |
28 | help: remove the value
29 |
30 = note: no expected value for `unix`
31
32 warning: unexpected `cfg` condition value
33 --> $DIR/well-known-values.rs:28:7
34 |
35 LL | #[cfg(miri = "miri")]
36 | ^^^^---------
37 | |
38 | help: remove the value
39 |
40 = note: no expected value for `miri`
41
42 warning: unexpected `cfg` condition value
43 --> $DIR/well-known-values.rs:35:7
44 |
45 LL | #[cfg(doc = "linux")]
46 | ^^^----------
47 | |
48 | help: remove the value
49 |
50 = note: no expected value for `doc`
51
52 warning: 5 warnings emitted
53