2017-05-17 12:19:44 +00:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:11:1
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl Clone for Qux {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Qux
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-05-17 12:19:44 +00:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:11:1
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl Clone for Qux {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Qux
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-05-17 12:19:44 +00:00
|
|
|
| |_^
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::expl-impl-clone-on-copy` implied by `-D warnings`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2017-09-13 13:34:04 +00:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:35:1
|
2017-09-13 13:34:04 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl<'a> Clone for Lt<'a> {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 13:34:04 +00:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:35:1
|
2017-09-13 13:34:04 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl<'a> Clone for Lt<'a> {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 13:34:04 +00:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:46:1
|
2017-09-13 13:34:04 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl Clone for BigArray {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 13:34:04 +00:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:46:1
|
2017-09-13 13:34:04 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl Clone for BigArray {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 13:34:04 +00:00
|
|
|
| |_^
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:57:1
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | / impl Clone for FnPtr {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:57:1
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | / impl Clone for FnPtr {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
2018-10-06 16:18:06 +00:00
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:77:1
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
LL | / impl<T: Clone> Clone for Generic2<T> {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Self(self.0.clone())
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2023-06-15 12:11:25 +00:00
|
|
|
--> $DIR/derive.rs:77:1
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
LL | / impl<T: Clone> Clone for Generic2<T> {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Self(self.0.clone())
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|