@@ -98,7 +98,7 @@ impl ::core::marker::Copy for Point { }
98
98
impl ::core::fmt::Debug for Point {
99
99
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
100
100
::core::fmt::Formatter::debug_struct_field2_finish(f, "Point", "x",
101
- && self.x, "y", &&self.y)
101
+ &self.x, "y", &&self.y)
102
102
}
103
103
}
104
104
#[automatically_derived]
@@ -183,7 +183,7 @@ impl ::core::marker::Copy for PackedPoint { }
183
183
impl ::core::fmt::Debug for PackedPoint {
184
184
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
185
185
::core::fmt::Formatter::debug_struct_field2_finish(f, "PackedPoint",
186
- "x", && { self.x }, "y", &&{ self.y })
186
+ "x", &{ self.x }, "y", &&{ self.y })
187
187
}
188
188
}
189
189
#[automatically_derived]
@@ -277,8 +277,8 @@ impl ::core::fmt::Debug for Big {
277
277
let names: &'static _ =
278
278
&["b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8"];
279
279
let values: &[&dyn ::core::fmt::Debug] =
280
- &[&& self.b1, && self.b2, && self.b3, && self.b4, && self.b5,
281
- &&self.b6, && self.b7, &&self.b8];
280
+ &[&self.b1, &self.b2, &self.b3, &self.b4, &self.b5, &self.b6 ,
281
+ &self.b7, &&self.b8];
282
282
::core::fmt::Formatter::debug_struct_fields_finish(f, "Big", names,
283
283
values)
284
284
}
@@ -565,7 +565,7 @@ impl<T: ::core::fmt::Debug + Trait, U: ::core::fmt::Debug> ::core::fmt::Debug
565
565
for Generic<T, U> where T::A: ::core::fmt::Debug {
566
566
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
567
567
::core::fmt::Formatter::debug_struct_field3_finish(f, "Generic", "t",
568
- && self.t, "ta", & &self.ta, "u", &&self.u)
568
+ &self.t, "ta", &self.ta, "u", &&self.u)
569
569
}
570
570
}
571
571
#[automatically_derived]
@@ -682,7 +682,7 @@ impl<T: ::core::fmt::Debug + ::core::marker::Copy + Trait,
682
682
{
683
683
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
684
684
::core::fmt::Formatter::debug_tuple_field3_finish(f, "PackedGeneric",
685
- && { self.0 }, & &{ self.1 }, &&{ self.2 })
685
+ &{ self.0 }, &{ self.1 }, &&{ self.2 })
686
686
}
687
687
}
688
688
#[automatically_derived]
@@ -1084,7 +1084,7 @@ impl ::core::fmt::Debug for Mixed {
1084
1084
&__self_0),
1085
1085
Mixed::S { d1: __self_0, d2: __self_1 } =>
1086
1086
::core::fmt::Formatter::debug_struct_field2_finish(f, "S",
1087
- "d1", & __self_0, "d2", &__self_1),
1087
+ "d1", __self_0, "d2", &__self_1),
1088
1088
}
1089
1089
}
1090
1090
}
0 commit comments