]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-cfg-target-has-atomic-equal-alignment.stderr
Rollup merge of #99460 - JanBeh:PR_asref_asmut_docs, r=joshtriplett
[rust.git] / src / test / ui / feature-gates / feature-gate-cfg-target-has-atomic-equal-alignment.stderr
1 error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
2   --> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:2:10
3    |
4 LL |     cfg!(target_has_atomic_equal_alignment = "8");
5    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
8    = help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
9
10 error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
11   --> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:4:10
12    |
13 LL |     cfg!(target_has_atomic_equal_alignment = "16");
14    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15    |
16    = note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
17    = help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
18
19 error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
20   --> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:6:10
21    |
22 LL |     cfg!(target_has_atomic_equal_alignment = "32");
23    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24    |
25    = note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
26    = help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
27
28 error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
29   --> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:8:10
30    |
31 LL |     cfg!(target_has_atomic_equal_alignment = "64");
32    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
33    |
34    = note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
35    = help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
36
37 error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
38   --> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:10:10
39    |
40 LL |     cfg!(target_has_atomic_equal_alignment = "128");
41    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42    |
43    = note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
44    = help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
45
46 error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
47   --> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:12:10
48    |
49 LL |     cfg!(target_has_atomic_equal_alignment = "ptr");
50    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
51    |
52    = note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
53    = help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
54
55 error: aborting due to 6 previous errors
56
57 For more information about this error, try `rustc --explain E0658`.