]> git.lizzy.rs Git - rust.git/blob - src/test/ui/repr/issue-83505-repr-simd.stderr
Auto merge of #100845 - timvermeulen:iter_compare, r=scottmcm
[rust.git] / src / test / ui / repr / issue-83505-repr-simd.stderr
1 error: free static item without body
2   --> $DIR/issue-83505-repr-simd.rs:9:1
3    |
4 LL | static CLs: Es;
5    | ^^^^^^^^^^^^^^-
6    |               |
7    |               help: provide a definition for the static: `= <expr>;`
8
9 error[E0517]: attribute should be applied to a struct
10   --> $DIR/issue-83505-repr-simd.rs:5:8
11    |
12 LL | #[repr(simd)]
13    |        ^^^^
14 ...
15 LL | enum Es {}
16    | ---------- not a struct
17
18 error[E0084]: unsupported representation for zero-variant enum
19   --> $DIR/issue-83505-repr-simd.rs:5:1
20    |
21 LL | #[repr(simd)]
22    | ^^^^^^^^^^^^^
23 ...
24 LL | enum Es {}
25    | ------- zero-variant enum
26
27 error: aborting due to 3 previous errors
28
29 Some errors have detailed explanations: E0084, E0517.
30 For more information about an error, try `rustc --explain E0084`.