From 730fa93634160ca2d21818235a12480b4e9bfe4c Mon Sep 17 00:00:00 2001 From: Caleb Cartwright Date: Sat, 25 Feb 2023 12:34:05 -0600 Subject: [PATCH] chore: remove unneeded rustfmt skip --- tests/ui/trailing_empty_array.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/ui/trailing_empty_array.rs b/tests/ui/trailing_empty_array.rs index c39b0bcaf22..8e3749eef35 100644 --- a/tests/ui/trailing_empty_array.rs +++ b/tests/ui/trailing_empty_array.rs @@ -155,7 +155,6 @@ struct TupleStructReprC(i32, [usize; 0]); type NamedTuple = (i32, [usize; 0]); -#[rustfmt::skip] // [rustfmt#4995](https://github.com/rust-lang/rustfmt/issues/4995) struct ConstParamZeroDefault { field: i32, last: [usize; N], @@ -166,7 +165,6 @@ struct ConstParamNoDefault { last: [usize; N], } -#[rustfmt::skip] struct ConstParamNonZeroDefault { field: i32, last: [usize; N],