about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCaleb Cartwright <caleb.cartwright@outlook.com>2023-02-25 12:34:05 -0600
committerCaleb Cartwright <caleb.cartwright@outlook.com>2023-02-25 12:34:05 -0600
commit730fa93634160ca2d21818235a12480b4e9bfe4c (patch)
treecf3e8832c899a8ba6074086bc0e3727d1319d748
parentb528cc90bc35a111125bfd2382bfcdcd345cea69 (diff)
downloadrust-730fa93634160ca2d21818235a12480b4e9bfe4c.tar.gz
rust-730fa93634160ca2d21818235a12480b4e9bfe4c.zip
chore: remove unneeded rustfmt skip
-rw-r--r--tests/ui/trailing_empty_array.rs2
1 files changed, 0 insertions, 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<const N: usize = 0> {
     field: i32,
     last: [usize; N],
@@ -166,7 +165,6 @@ struct ConstParamNoDefault<const N: usize> {
     last: [usize; N],
 }
 
-#[rustfmt::skip] 
 struct ConstParamNonZeroDefault<const N: usize = 1> {
     field: i32,
     last: [usize; N],