@@ -98,7 +98,7 @@ impl ::core::marker::Copy for Point { }
9898impl ::core::fmt::Debug for Point {
9999 fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
100100 ::core::fmt::Formatter::debug_struct_field2_finish(f, "Point", "x",
101- && self.x, "y", &&self.y)
101+ &self.x, "y", &&self.y)
102102 }
103103}
104104#[automatically_derived]
@@ -183,7 +183,7 @@ impl ::core::marker::Copy for PackedPoint { }
183183impl ::core::fmt::Debug for PackedPoint {
184184 fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
185185 ::core::fmt::Formatter::debug_struct_field2_finish(f, "PackedPoint",
186- "x", && { self.x }, "y", &&{ self.y })
186+ "x", &{ self.x }, "y", &&{ self.y })
187187 }
188188}
189189#[automatically_derived]
@@ -277,8 +277,8 @@ impl ::core::fmt::Debug for Big {
277277 let names: &'static _ =
278278 &["b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8"];
279279 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];
282282 ::core::fmt::Formatter::debug_struct_fields_finish(f, "Big", names,
283283 values)
284284 }
@@ -565,7 +565,7 @@ impl<T: ::core::fmt::Debug + Trait, U: ::core::fmt::Debug> ::core::fmt::Debug
565565 for Generic<T, U> where T::A: ::core::fmt::Debug {
566566 fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
567567 ::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)
569569 }
570570}
571571#[automatically_derived]
@@ -682,7 +682,7 @@ impl<T: ::core::fmt::Debug + ::core::marker::Copy + Trait,
682682 {
683683 fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
684684 ::core::fmt::Formatter::debug_tuple_field3_finish(f, "PackedGeneric",
685- && { self.0 }, & &{ self.1 }, &&{ self.2 })
685+ &{ self.0 }, &{ self.1 }, &&{ self.2 })
686686 }
687687}
688688#[automatically_derived]
@@ -1084,7 +1084,7 @@ impl ::core::fmt::Debug for Mixed {
10841084 &__self_0),
10851085 Mixed::S { d1: __self_0, d2: __self_1 } =>
10861086 ::core::fmt::Formatter::debug_struct_field2_finish(f, "S",
1087- "d1", & __self_0, "d2", &__self_1),
1087+ "d1", __self_0, "d2", &__self_1),
10881088 }
10891089 }
10901090}
0 commit comments