Skip to content

Commit 3d193fa

Browse files
committed
Auto merge of #10400 - calebcartwright:rustfmt-cleanup, r=Jarcho
chore: remove unneeded rustfmt skip --- The associated rustfmt bug that originally necessitated these skips was resolved a while back, so these are no longer necessary changelog: none
2 parents e1ac133 + 730fa93 commit 3d193fa

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/ui/trailing_empty_array.rs

-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ struct TupleStructReprC(i32, [usize; 0]);
155155

156156
type NamedTuple = (i32, [usize; 0]);
157157

158-
#[rustfmt::skip] // [rustfmt#4995](https://github.com/rust-lang/rustfmt/issues/4995)
159158
struct ConstParamZeroDefault<const N: usize = 0> {
160159
field: i32,
161160
last: [usize; N],
@@ -166,7 +165,6 @@ struct ConstParamNoDefault<const N: usize> {
166165
last: [usize; N],
167166
}
168167

169-
#[rustfmt::skip]
170168
struct ConstParamNonZeroDefault<const N: usize = 1> {
171169
field: i32,
172170
last: [usize; N],

0 commit comments

Comments
 (0)