2017-05-17 14:19:44 +02:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2019-10-28 07:34:29 +01:00
|
|
|
--> $DIR/derive.rs:8:1
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / impl Clone for Qux {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Qux
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-05-17 14:19:44 +02:00
|
|
|
| |_^
|
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::expl-impl-clone-on-copy` implied by `-D warnings`
|
2017-05-17 14:19:44 +02:00
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2019-10-28 07:34:29 +01:00
|
|
|
--> $DIR/derive.rs:8:1
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / impl Clone for Qux {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | Qux
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-05-17 14:19:44 +02:00
|
|
|
| |_^
|
|
|
|
|
2017-09-13 15:34:04 +02:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2019-10-28 07:34:29 +01:00
|
|
|
--> $DIR/derive.rs:32:1
|
2017-09-13 15:34:04 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / impl<'a> Clone for Lt<'a> {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 15:34:04 +02:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2019-10-28 07:34:29 +01:00
|
|
|
--> $DIR/derive.rs:32:1
|
2017-09-13 15:34:04 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / impl<'a> Clone for Lt<'a> {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 15:34:04 +02:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2019-10-28 07:34:29 +01:00
|
|
|
--> $DIR/derive.rs:44:1
|
2017-09-13 15:34:04 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / impl Clone for BigArray {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 15:34:04 +02:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2019-10-28 07:34:29 +01:00
|
|
|
--> $DIR/derive.rs:44:1
|
2017-09-13 15:34:04 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / impl Clone for BigArray {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-09-13 15:34:04 +02:00
|
|
|
| |_^
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2019-10-28 07:34:29 +01:00
|
|
|
--> $DIR/derive.rs:56:1
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | / impl Clone for FnPtr {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
2019-10-28 07:34:29 +01:00
|
|
|
--> $DIR/derive.rs:56:1
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | / impl Clone for FnPtr {
|
|
|
|
LL | | fn clone(&self) -> Self {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
2018-10-06 18:18:06 +02:00
|
|
|
|
2019-10-28 07:34:29 +01:00
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|