summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/trailing_empty_array.stderr
blob: 2e1484400352d10998ba5e6a85c9794873f28f4f (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:5:1
   |
LL | / struct RarelyUseful {
LL | |     field: i32,
LL | |     last: [usize; 0],
LL | | }
   | |_^
   |
   = help: consider annotating `RarelyUseful` with `#[repr(C)]` or another `repr` attribute
   = note: `-D clippy::trailing-empty-array` implied by `-D warnings`

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:10:1
   |
LL | / struct OnlyField {
LL | |     first_and_last: [usize; 0],
LL | | }
   | |_^
   |
   = help: consider annotating `OnlyField` with `#[repr(C)]` or another `repr` attribute

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:14:1
   |
LL | / struct GenericArrayType<T> {
LL | |     field: i32,
LL | |     last: [T; 0],
LL | | }
   | |_^
   |
   = help: consider annotating `GenericArrayType` with `#[repr(C)]` or another `repr` attribute

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:20:1
   |
LL | / struct OnlyAnotherAttribute {
LL | |     field: i32,
LL | |     last: [usize; 0],
LL | | }
   | |_^
   |
   = help: consider annotating `OnlyAnotherAttribute` with `#[repr(C)]` or another `repr` attribute

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:26:1
   |
LL | / struct OnlyADeriveAttribute {
LL | |     field: i32,
LL | |     last: [usize; 0],
LL | | }
   | |_^
   |
   = help: consider annotating `OnlyADeriveAttribute` with `#[repr(C)]` or another `repr` attribute

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:32:1
   |
LL | / struct ZeroSizedWithConst {
LL | |     field: i32,
LL | |     last: [usize; ZERO],
LL | | }
   | |_^
   |
   = help: consider annotating `ZeroSizedWithConst` with `#[repr(C)]` or another `repr` attribute

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:41:1
   |
LL | / struct ZeroSizedWithConstFunction {
LL | |     field: i32,
LL | |     last: [usize; compute_zero()],
LL | | }
   | |_^
   |
   = help: consider annotating `ZeroSizedWithConstFunction` with `#[repr(C)]` or another `repr` attribute

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:49:1
   |
LL | / struct ZeroSizedWithConstFunction2 {
LL | |     field: i32,
LL | |     last: [usize; compute_zero_from_arg(1)],
LL | | }
   | |_^
   |
   = help: consider annotating `ZeroSizedWithConstFunction2` with `#[repr(C)]` or another `repr` attribute

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:54:1
   |
LL | struct ZeroSizedArrayWrapper([usize; 0]);
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider annotating `ZeroSizedArrayWrapper` with `#[repr(C)]` or another `repr` attribute

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:56:1
   |
LL | struct TupleStruct(i32, [usize; 0]);
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider annotating `TupleStruct` with `#[repr(C)]` or another `repr` attribute

error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
  --> $DIR/trailing_empty_array.rs:58:1
   |
LL | / struct LotsOfFields {
LL | |     f1: u32,
LL | |     f2: u32,
LL | |     f3: u32,
...  |
LL | |     last: [usize; 0],
LL | | }
   | |_^
   |
   = help: consider annotating `LotsOfFields` with `#[repr(C)]` or another `repr` attribute

error: aborting due to 11 previous errors