summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/mismatched_target_os_non_unix.stderr
blob: 5f1b090830464162784eb324d77de99adf135953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
error: operating system used in target family position
  --> $DIR/mismatched_target_os_non_unix.rs:6:1
   |
LL | #[cfg(hermit)]
   | ^^^^^^------^^
   |       |
   |       help: try: `target_os = "hermit"`
   |
   = note: `-D clippy::mismatched-target-os` implied by `-D warnings`

error: operating system used in target family position
  --> $DIR/mismatched_target_os_non_unix.rs:9:1
   |
LL | #[cfg(wasi)]
   | ^^^^^^----^^
   |       |
   |       help: try: `target_os = "wasi"`

error: operating system used in target family position
  --> $DIR/mismatched_target_os_non_unix.rs:12:1
   |
LL | #[cfg(none)]
   | ^^^^^^----^^
   |       |
   |       help: try: `target_os = "none"`

error: operating system used in target family position
  --> $DIR/mismatched_target_os_non_unix.rs:16:1
   |
LL | #[cfg(all(not(windows), wasi))]
   | ^^^^^^^^^^^^^^^^^^^^^^^^----^^^
   |                         |
   |                         help: try: `target_os = "wasi"`

error: aborting due to 4 previous errors