about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/default_union_representation.stderr
blob: d558a3e8de1b93c7dccdb674e336320050ade749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
error: this union has the default representation
  --> tests/ui/default_union_representation.rs:5:1
   |
LL | / union NoAttribute {
LL | |
LL | |     a: i32,
LL | |     b: u32,
LL | | }
   | |_^
   |
   = help: consider annotating `NoAttribute` with `#[repr(C)]` to explicitly specify memory layout
   = note: `-D clippy::default-union-representation` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::default_union_representation)]`

error: this union has the default representation
  --> tests/ui/default_union_representation.rs:18:1
   |
LL | / union ReprPacked {
LL | |
LL | |     a: i32,
LL | |     b: u32,
LL | | }
   | |_^
   |
   = help: consider annotating `ReprPacked` with `#[repr(C)]` to explicitly specify memory layout

error: this union has the default representation
  --> tests/ui/default_union_representation.rs:37:1
   |
LL | / union ReprAlign {
LL | |
LL | |     a: i32,
LL | |     b: u32,
LL | | }
   | |_^
   |
   = help: consider annotating `ReprAlign` with `#[repr(C)]` to explicitly specify memory layout

error: this union has the default representation
  --> tests/ui/default_union_representation.rs:58:1
   |
LL | / union ZSTAndTwoFields {
LL | |
LL | |     f0: u32,
LL | |     f1: u64,
LL | |     f2: (),
LL | | }
   | |_^
   |
   = help: consider annotating `ZSTAndTwoFields` with `#[repr(C)]` to explicitly specify memory layout

error: aborting due to 4 previous errors