mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 04:55:22 +03:00
9545094994
Don't generate unecessary `&&self.field` in deriving Debug Since unsized fields may only be the last one in a struct, we only need to generate a double reference (`&&self.field`) for the final one. cc `@nnethercote`