mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 11:05:06 +00:00
It's common to see repeated assertions like this in derived `clone` and `eq` methods: ``` let _: ::core::clone::AssertParamIsClone<u32>; let _: ::core::clone::AssertParamIsClone<u32>; ``` This commit avoids them.