mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
114 lines
2.5 KiB
Text
114 lines
2.5 KiB
Text
error: you are implementing `Clone` explicitly on a `Copy` type
|
|
--> tests/ui/derive.rs:7:1
|
|
|
|
|
LL | / impl Clone for Qux {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | Qux
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
|
--> tests/ui/derive.rs:7:1
|
|
|
|
|
LL | / impl Clone for Qux {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | Qux
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
= note: `-D clippy::expl-impl-clone-on-copy` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::expl_impl_clone_on_copy)]`
|
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
|
--> tests/ui/derive.rs:32:1
|
|
|
|
|
LL | / impl<'a> Clone for Lt<'a> {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | unimplemented!()
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
|
--> tests/ui/derive.rs:32:1
|
|
|
|
|
LL | / impl<'a> Clone for Lt<'a> {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | unimplemented!()
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
|
--> tests/ui/derive.rs:44:1
|
|
|
|
|
LL | / impl Clone for BigArray {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | unimplemented!()
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
|
--> tests/ui/derive.rs:44:1
|
|
|
|
|
LL | / impl Clone for BigArray {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | unimplemented!()
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
|
--> tests/ui/derive.rs:56:1
|
|
|
|
|
LL | / impl Clone for FnPtr {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | unimplemented!()
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
|
--> tests/ui/derive.rs:56:1
|
|
|
|
|
LL | / impl Clone for FnPtr {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | unimplemented!()
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
|
--> tests/ui/derive.rs:77:1
|
|
|
|
|
LL | / impl<T: Clone> Clone for Generic2<T> {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | Self(self.0.clone())
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
|
--> tests/ui/derive.rs:77:1
|
|
|
|
|
LL | / impl<T: Clone> Clone for Generic2<T> {
|
|
LL | |
|
|
LL | | fn clone(&self) -> Self {
|
|
LL | | Self(self.0.clone())
|
|
LL | | }
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|