about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-02-26 03:03:01 +0000
committerbors <bors@rust-lang.org>2023-02-26 03:03:01 +0000
commit3d193fa17a7df3256d58b841a2df92af1cbdbea4 (patch)
treed56683a0905027c50e41296c6d0807404c2789f6
parente1ac1332b668f584919aba86ad3e81f267251e9b (diff)
parent730fa93634160ca2d21818235a12480b4e9bfe4c (diff)
downloadrust-3d193fa17a7df3256d58b841a2df92af1cbdbea4.tar.gz
rust-3d193fa17a7df3256d58b841a2df92af1cbdbea4.zip
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
-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],