mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
error: non-canonical implementation of `clone` on a `Copy` type
|
|
--> tests/ui/non_canonical_clone_impl.rs:10:29
|
|
|
|
|
LL | fn clone(&self) -> Self {
|
|
| _____________________________^
|
|
LL | | Self(self.0)
|
|
LL | | }
|
|
| |_____^ help: change this to: `{ *self }`
|
|
|
|
|
= note: `-D clippy::non-canonical-clone-impl` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::non_canonical_clone_impl)]`
|
|
|
|
error: unnecessary implementation of `clone_from` on a `Copy` type
|
|
--> tests/ui/non_canonical_clone_impl.rs:14:5
|
|
|
|
|
LL | / fn clone_from(&mut self, source: &Self) {
|
|
LL | | source.clone();
|
|
LL | | *self = source.clone();
|
|
LL | | }
|
|
| |_____^ help: remove it
|
|
|
|
error: non-canonical implementation of `clone` on a `Copy` type
|
|
--> tests/ui/non_canonical_clone_impl.rs:81:29
|
|
|
|
|
LL | fn clone(&self) -> Self {
|
|
| _____________________________^
|
|
LL | | Self(self.0)
|
|
LL | | }
|
|
| |_____^ help: change this to: `{ *self }`
|
|
|
|
error: unnecessary implementation of `clone_from` on a `Copy` type
|
|
--> tests/ui/non_canonical_clone_impl.rs:85:5
|
|
|
|
|
LL | / fn clone_from(&mut self, source: &Self) {
|
|
LL | | source.clone();
|
|
LL | | *self = source.clone();
|
|
LL | | }
|
|
| |_____^ help: remove it
|
|
|
|
error: aborting due to 4 previous errors
|
|
|