]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-cfg-target-vendor.stderr
Auto merge of #52101 - japaric:linker-flavor, r=alexcrichton
[rust.git] / src / test / ui / feature-gates / feature-gate-cfg-target-vendor.stderr
1 error[E0658]: `cfg(target_vendor)` is experimental and subject to change (see issue #29718)
2   --> $DIR/feature-gate-cfg-target-vendor.rs:12:12
3    |
4 LL | #[cfg_attr(target_vendor = "x", x)] //~ ERROR `cfg(target_vendor)` is experimental
5    |            ^^^^^^^^^^^^^^^^^^^
6    |
7    = help: add #![feature(cfg_target_vendor)] to the crate attributes to enable
8
9 error[E0658]: `cfg(target_vendor)` is experimental and subject to change (see issue #29718)
10   --> $DIR/feature-gate-cfg-target-vendor.rs:11:7
11    |
12 LL | #[cfg(target_vendor = "x")] //~ ERROR `cfg(target_vendor)` is experimental
13    |       ^^^^^^^^^^^^^^^^^^^
14    |
15    = help: add #![feature(cfg_target_vendor)] to the crate attributes to enable
16
17 error[E0658]: `cfg(target_vendor)` is experimental and subject to change (see issue #29718)
18   --> $DIR/feature-gate-cfg-target-vendor.rs:15:19
19    |
20 LL | #[cfg(not(any(all(target_vendor = "x"))))] //~ ERROR `cfg(target_vendor)` is experimental
21    |                   ^^^^^^^^^^^^^^^^^^^
22    |
23    = help: add #![feature(cfg_target_vendor)] to the crate attributes to enable
24
25 error[E0658]: `cfg(target_vendor)` is experimental and subject to change (see issue #29718)
26   --> $DIR/feature-gate-cfg-target-vendor.rs:19:10
27    |
28 LL |     cfg!(target_vendor = "x");
29    |          ^^^^^^^^^^^^^^^^^^^
30    |
31    = help: add #![feature(cfg_target_vendor)] to the crate attributes to enable
32
33 error: aborting due to 4 previous errors
34
35 For more information about this error, try `rustc --explain E0658`.