]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-cfg-target-has-atomic.stderr
f3975b7ce8b26fdbebe36f2a73080b385c267f83
[rust.git] / src / test / ui / feature-gates / feature-gate-cfg-target-has-atomic.stderr
1 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
2   --> $DIR/feature-gate-cfg-target-has-atomic.rs:23:7
3    |
4 LL | #[cfg(target_has_atomic = "8")]
5    |       ^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
8
9 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
10   --> $DIR/feature-gate-cfg-target-has-atomic.rs:29:7
11    |
12 LL | #[cfg(target_has_atomic = "8")]
13    |       ^^^^^^^^^^^^^^^^^^^^^^^
14    |
15    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
16
17 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
18   --> $DIR/feature-gate-cfg-target-has-atomic.rs:34:7
19    |
20 LL | #[cfg(target_has_atomic = "16")]
21    |       ^^^^^^^^^^^^^^^^^^^^^^^^
22    |
23    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
24
25 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
26   --> $DIR/feature-gate-cfg-target-has-atomic.rs:39:7
27    |
28 LL | #[cfg(target_has_atomic = "16")]
29    |       ^^^^^^^^^^^^^^^^^^^^^^^^
30    |
31    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
32
33 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
34   --> $DIR/feature-gate-cfg-target-has-atomic.rs:44:7
35    |
36 LL | #[cfg(target_has_atomic = "32")]
37    |       ^^^^^^^^^^^^^^^^^^^^^^^^
38    |
39    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
40
41 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
42   --> $DIR/feature-gate-cfg-target-has-atomic.rs:49:7
43    |
44 LL | #[cfg(target_has_atomic = "32")]
45    |       ^^^^^^^^^^^^^^^^^^^^^^^^
46    |
47    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
48
49 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
50   --> $DIR/feature-gate-cfg-target-has-atomic.rs:54:7
51    |
52 LL | #[cfg(target_has_atomic = "64")]
53    |       ^^^^^^^^^^^^^^^^^^^^^^^^
54    |
55    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
56
57 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
58   --> $DIR/feature-gate-cfg-target-has-atomic.rs:59:7
59    |
60 LL | #[cfg(target_has_atomic = "64")]
61    |       ^^^^^^^^^^^^^^^^^^^^^^^^
62    |
63    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
64
65 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
66   --> $DIR/feature-gate-cfg-target-has-atomic.rs:64:7
67    |
68 LL | #[cfg(target_has_atomic = "ptr")]
69    |       ^^^^^^^^^^^^^^^^^^^^^^^^^
70    |
71    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
72
73 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
74   --> $DIR/feature-gate-cfg-target-has-atomic.rs:69:7
75    |
76 LL | #[cfg(target_has_atomic = "ptr")]
77    |       ^^^^^^^^^^^^^^^^^^^^^^^^^
78    |
79    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
80
81 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
82   --> $DIR/feature-gate-cfg-target-has-atomic.rs:76:10
83    |
84 LL |     cfg!(target_has_atomic = "8");
85    |          ^^^^^^^^^^^^^^^^^^^^^^^
86    |
87    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
88
89 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
90   --> $DIR/feature-gate-cfg-target-has-atomic.rs:78:10
91    |
92 LL |     cfg!(target_has_atomic = "16");
93    |          ^^^^^^^^^^^^^^^^^^^^^^^^
94    |
95    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
96
97 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
98   --> $DIR/feature-gate-cfg-target-has-atomic.rs:80:10
99    |
100 LL |     cfg!(target_has_atomic = "32");
101    |          ^^^^^^^^^^^^^^^^^^^^^^^^
102    |
103    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
104
105 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
106   --> $DIR/feature-gate-cfg-target-has-atomic.rs:82:10
107    |
108 LL |     cfg!(target_has_atomic = "64");
109    |          ^^^^^^^^^^^^^^^^^^^^^^^^
110    |
111    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
112
113 error[E0658]: `cfg(target_has_atomic)` is experimental and subject to change (see issue #32976)
114   --> $DIR/feature-gate-cfg-target-has-atomic.rs:84:10
115    |
116 LL |     cfg!(target_has_atomic = "ptr");
117    |          ^^^^^^^^^^^^^^^^^^^^^^^^^
118    |
119    = help: add #![feature(cfg_target_has_atomic)] to the crate attributes to enable
120
121 error: aborting due to 15 previous errors
122
123 For more information about this error, try `rustc --explain E0658`.