Skip to content

Commit 1e896df

Browse files
committed
clippy owo
1 parent 59bf1f7 commit 1e896df

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

src/tools/clippy/tests/ui/trailing_empty_array.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![warn(clippy::trailing_empty_array)]
2-
#![feature(const_generics_defaults)]
32

43
// Do lint:
54

src/tools/clippy/tests/ui/trailing_empty_array.stderr

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
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
33
|
44
LL | / struct RarelyUseful {
55
LL | | field: i32,
@@ -11,7 +11,7 @@ LL | | }
1111
= help: consider annotating `RarelyUseful` with `#[repr(C)]` or another `repr` attribute
1212

1313
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
1515
|
1616
LL | / struct OnlyField {
1717
LL | | first_and_last: [usize; 0],
@@ -21,7 +21,7 @@ LL | | }
2121
= help: consider annotating `OnlyField` with `#[repr(C)]` or another `repr` attribute
2222

2323
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
2525
|
2626
LL | / struct GenericArrayType<T> {
2727
LL | | field: i32,
@@ -32,7 +32,7 @@ LL | | }
3232
= help: consider annotating `GenericArrayType` with `#[repr(C)]` or another `repr` attribute
3333

3434
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
3636
|
3737
LL | / struct OnlyAnotherAttribute {
3838
LL | | field: i32,
@@ -43,7 +43,7 @@ LL | | }
4343
= help: consider annotating `OnlyAnotherAttribute` with `#[repr(C)]` or another `repr` attribute
4444

4545
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
4747
|
4848
LL | / struct OnlyADeriveAttribute {
4949
LL | | field: i32,
@@ -54,7 +54,7 @@ LL | | }
5454
= help: consider annotating `OnlyADeriveAttribute` with `#[repr(C)]` or another `repr` attribute
5555

5656
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
5858
|
5959
LL | / struct ZeroSizedWithConst {
6060
LL | | field: i32,
@@ -65,7 +65,7 @@ LL | | }
6565
= help: consider annotating `ZeroSizedWithConst` with `#[repr(C)]` or another `repr` attribute
6666

6767
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
6969
|
7070
LL | / struct ZeroSizedWithConstFunction {
7171
LL | | field: i32,
@@ -76,7 +76,7 @@ LL | | }
7676
= help: consider annotating `ZeroSizedWithConstFunction` with `#[repr(C)]` or another `repr` attribute
7777

7878
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
8080
|
8181
LL | / struct ZeroSizedWithConstFunction2 {
8282
LL | | field: i32,
@@ -87,23 +87,23 @@ LL | | }
8787
= help: consider annotating `ZeroSizedWithConstFunction2` with `#[repr(C)]` or another `repr` attribute
8888

8989
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
9191
|
9292
LL | struct ZeroSizedArrayWrapper([usize; 0]);
9393
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9494
|
9595
= help: consider annotating `ZeroSizedArrayWrapper` with `#[repr(C)]` or another `repr` attribute
9696

9797
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
9999
|
100100
LL | struct TupleStruct(i32, [usize; 0]);
101101
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
102102
|
103103
= help: consider annotating `TupleStruct` with `#[repr(C)]` or another `repr` attribute
104104

105105
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
107107
|
108108
LL | / struct LotsOfFields {
109109
LL | | f1: u32,

0 commit comments

Comments
 (0)