]> git.proxmox.com Git - rustc.git/blob - src/test/ui/feature-gates/feature-gate-repr-simd.stderr
New upstream version 1.38.0+dfsg1
[rustc.git] / src / test / ui / feature-gates / feature-gate-repr-simd.stderr
1 error[E0658]: SIMD types are experimental and possibly buggy
2 --> $DIR/feature-gate-repr-simd.rs:1:1
3 |
4 LL | #[repr(simd)]
5 | ^^^^^^^^^^^^^
6 |
7 = note: for more information, see https://github.com/rust-lang/rust/issues/27731
8 = help: add `#![feature(repr_simd)]` to the crate attributes to enable
9
10 error[E0658]: SIMD types are experimental and possibly buggy
11 --> $DIR/feature-gate-repr-simd.rs:5:1
12 |
13 LL | #[repr(simd)]
14 | ^^^^^^^^^^^^^
15 |
16 = note: for more information, see https://github.com/rust-lang/rust/issues/27731
17 = help: add `#![feature(repr_simd)]` to the crate attributes to enable
18
19 warning[E0566]: conflicting representation hints
20 --> $DIR/feature-gate-repr-simd.rs:4:8
21 |
22 LL | #[repr(C)]
23 | ^
24 LL | #[repr(simd)]
25 | ^^^^
26
27 error: aborting due to 2 previous errors
28
29 For more information about this error, try `rustc --explain E0658`.