2017-05-17 07:19:44 -05:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:7:1
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / impl Clone for Qux {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Qux
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-05-17 07:19:44 -05:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:7:1
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / impl Clone for Qux {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Qux
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-05-17 07:19:44 -05:00
|
|
|
| |_^
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::expl-impl-clone-on-copy` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::expl_impl_clone_on_copy)]`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2017-09-13 08:34:04 -05:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:32:1
|
2017-09-13 08:34:04 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / impl<'a> Clone for Lt<'a> {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 08:34:04 -05:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:32:1
|
2017-09-13 08:34:04 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / impl<'a> Clone for Lt<'a> {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 08:34:04 -05:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:44:1
|
2017-09-13 08:34:04 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / impl Clone for BigArray {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 08:34:04 -05:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:44:1
|
2017-09-13 08:34:04 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / impl Clone for BigArray {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 08:34:04 -05:00
|
|
|
| |_^
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:56:1
|
2018-12-27 09:57:55 -06:00
|
|
|
|
|
|
|
|
LL | / impl Clone for FnPtr {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:56:1
|
2018-12-27 09:57:55 -06:00
|
|
|
|
|
|
|
|
LL | / impl Clone for FnPtr {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
2018-10-06 11:18:06 -05:00
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:77:1
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | / impl<T: Clone> Clone for Generic2<T> {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2021-04-08 10:50:13 -05:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Self(self.0.clone())
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derive.rs:77:1
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
|
LL | / impl<T: Clone> Clone for Generic2<T> {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2021-04-08 10:50:13 -05:00
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Self(self.0.clone())
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|