error: you are implementing `Clone` explicitly on a `Copy` type --> $DIR/derive.rs:12:1 | LL | / impl Clone for Qux { LL | | fn clone(&self) -> Self { LL | | Qux LL | | } LL | | } | |_^ | note: consider deriving `Clone` or removing `Copy` --> $DIR/derive.rs:12:1 | LL | / impl Clone for Qux { LL | | fn clone(&self) -> Self { LL | | Qux LL | | } LL | | } | |_^ = note: `-D clippy::expl-impl-clone-on-copy` implied by `-D warnings` error: you are implementing `Clone` explicitly on a `Copy` type --> $DIR/derive.rs:36:1 | LL | / impl<'a> Clone for Lt<'a> { LL | | fn clone(&self) -> Self { LL | | unimplemented!() LL | | } LL | | } | |_^ | note: consider deriving `Clone` or removing `Copy` --> $DIR/derive.rs:36:1 | LL | / impl<'a> Clone for Lt<'a> { LL | | fn clone(&self) -> Self { LL | | unimplemented!() LL | | } LL | | } | |_^ error: you are implementing `Clone` explicitly on a `Copy` type --> $DIR/derive.rs:47:1 | LL | / impl Clone for BigArray { LL | | fn clone(&self) -> Self { LL | | unimplemented!() LL | | } LL | | } | |_^ | note: consider deriving `Clone` or removing `Copy` --> $DIR/derive.rs:47:1 | LL | / impl Clone for BigArray { LL | | fn clone(&self) -> Self { LL | | unimplemented!() LL | | } LL | | } | |_^ error: you are implementing `Clone` explicitly on a `Copy` type --> $DIR/derive.rs:58:1 | LL | / impl Clone for FnPtr { LL | | fn clone(&self) -> Self { LL | | unimplemented!() LL | | } LL | | } | |_^ | note: consider deriving `Clone` or removing `Copy` --> $DIR/derive.rs:58:1 | LL | / impl Clone for FnPtr { LL | | fn clone(&self) -> Self { LL | | unimplemented!() LL | | } LL | | } | |_^ error: you are implementing `Clone` explicitly on a `Copy` type --> $DIR/derive.rs:78:1 | LL | / impl Clone for Generic2 { LL | | fn clone(&self) -> Self { LL | | Self(self.0.clone()) LL | | } LL | | } | |_^ | note: consider deriving `Clone` or removing `Copy` --> $DIR/derive.rs:78:1 | LL | / impl Clone for Generic2 { LL | | fn clone(&self) -> Self { LL | | Self(self.0.clone()) LL | | } LL | | } | |_^ error: aborting due to 5 previous errors