diff options
| author | Caleb Cartwright <caleb.cartwright@outlook.com> | 2023-02-25 12:34:05 -0600 |
|---|---|---|
| committer | Caleb Cartwright <caleb.cartwright@outlook.com> | 2023-02-25 12:34:05 -0600 |
| commit | 730fa93634160ca2d21818235a12480b4e9bfe4c (patch) | |
| tree | cf3e8832c899a8ba6074086bc0e3727d1319d748 | |
| parent | b528cc90bc35a111125bfd2382bfcdcd345cea69 (diff) | |
| download | rust-730fa93634160ca2d21818235a12480b4e9bfe4c.tar.gz rust-730fa93634160ca2d21818235a12480b4e9bfe4c.zip | |
chore: remove unneeded rustfmt skip
| -rw-r--r-- | tests/ui/trailing_empty_array.rs | 2 |
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], |
