1
1
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
2
- --> $DIR/trailing_empty_array.rs:6 :1
2
+ --> $DIR/trailing_empty_array.rs:5 :1
3
3
|
4
4
LL | / struct RarelyUseful {
5
5
LL | | field: i32,
@@ -11,7 +11,7 @@ LL | | }
11
11
= help: consider annotating `RarelyUseful` with `#[repr(C)]` or another `repr` attribute
12
12
13
13
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
14
- --> $DIR/trailing_empty_array.rs:11 :1
14
+ --> $DIR/trailing_empty_array.rs:10 :1
15
15
|
16
16
LL | / struct OnlyField {
17
17
LL | | first_and_last: [usize; 0],
@@ -21,7 +21,7 @@ LL | | }
21
21
= help: consider annotating `OnlyField` with `#[repr(C)]` or another `repr` attribute
22
22
23
23
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
24
- --> $DIR/trailing_empty_array.rs:15 :1
24
+ --> $DIR/trailing_empty_array.rs:14 :1
25
25
|
26
26
LL | / struct GenericArrayType<T> {
27
27
LL | | field: i32,
@@ -32,7 +32,7 @@ LL | | }
32
32
= help: consider annotating `GenericArrayType` with `#[repr(C)]` or another `repr` attribute
33
33
34
34
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
35
- --> $DIR/trailing_empty_array.rs:21 :1
35
+ --> $DIR/trailing_empty_array.rs:20 :1
36
36
|
37
37
LL | / struct OnlyAnotherAttribute {
38
38
LL | | field: i32,
@@ -43,7 +43,7 @@ LL | | }
43
43
= help: consider annotating `OnlyAnotherAttribute` with `#[repr(C)]` or another `repr` attribute
44
44
45
45
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
46
- --> $DIR/trailing_empty_array.rs:27 :1
46
+ --> $DIR/trailing_empty_array.rs:26 :1
47
47
|
48
48
LL | / struct OnlyADeriveAttribute {
49
49
LL | | field: i32,
@@ -54,7 +54,7 @@ LL | | }
54
54
= help: consider annotating `OnlyADeriveAttribute` with `#[repr(C)]` or another `repr` attribute
55
55
56
56
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
57
- --> $DIR/trailing_empty_array.rs:33 :1
57
+ --> $DIR/trailing_empty_array.rs:32 :1
58
58
|
59
59
LL | / struct ZeroSizedWithConst {
60
60
LL | | field: i32,
@@ -65,7 +65,7 @@ LL | | }
65
65
= help: consider annotating `ZeroSizedWithConst` with `#[repr(C)]` or another `repr` attribute
66
66
67
67
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
68
- --> $DIR/trailing_empty_array.rs:42 :1
68
+ --> $DIR/trailing_empty_array.rs:41 :1
69
69
|
70
70
LL | / struct ZeroSizedWithConstFunction {
71
71
LL | | field: i32,
@@ -76,7 +76,7 @@ LL | | }
76
76
= help: consider annotating `ZeroSizedWithConstFunction` with `#[repr(C)]` or another `repr` attribute
77
77
78
78
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
79
- --> $DIR/trailing_empty_array.rs:50 :1
79
+ --> $DIR/trailing_empty_array.rs:49 :1
80
80
|
81
81
LL | / struct ZeroSizedWithConstFunction2 {
82
82
LL | | field: i32,
@@ -87,23 +87,23 @@ LL | | }
87
87
= help: consider annotating `ZeroSizedWithConstFunction2` with `#[repr(C)]` or another `repr` attribute
88
88
89
89
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
90
- --> $DIR/trailing_empty_array.rs:55 :1
90
+ --> $DIR/trailing_empty_array.rs:54 :1
91
91
|
92
92
LL | struct ZeroSizedArrayWrapper([usize; 0]);
93
93
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
94
94
|
95
95
= help: consider annotating `ZeroSizedArrayWrapper` with `#[repr(C)]` or another `repr` attribute
96
96
97
97
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
98
- --> $DIR/trailing_empty_array.rs:57 :1
98
+ --> $DIR/trailing_empty_array.rs:56 :1
99
99
|
100
100
LL | struct TupleStruct(i32, [usize; 0]);
101
101
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
102
102
|
103
103
= help: consider annotating `TupleStruct` with `#[repr(C)]` or another `repr` attribute
104
104
105
105
error: trailing zero-sized array in a struct which is not marked with a `repr` attribute
106
- --> $DIR/trailing_empty_array.rs:59 :1
106
+ --> $DIR/trailing_empty_array.rs:58 :1
107
107
|
108
108
LL | / struct LotsOfFields {
109
109
LL | | f1: u32,
0 commit comments