2017-05-17 14:19:44 +02:00
|
|
|
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/derive.rs:27:10
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
27 | #[derive(Hash)]
|
2017-05-17 14:19:44 +02:00
|
|
|
| ^^^^
|
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: #[deny(clippy::derive_hash_xor_eq)] on by default
|
2017-05-17 14:19:44 +02:00
|
|
|
note: `PartialEq` implemented here
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/derive.rs:30:1
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
30 | / impl PartialEq for Bar {
|
|
|
|
31 | | fn eq(&self, _: &Bar) -> bool { true }
|
|
|
|
32 | | }
|
2017-05-17 14:19:44 +02:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/derive.rs:34:10
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
34 | #[derive(Hash)]
|
2017-05-17 14:19:44 +02:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
note: `PartialEq` implemented here
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/derive.rs:37:1
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
37 | / impl PartialEq<Baz> for Baz {
|
|
|
|
38 | | fn eq(&self, _: &Baz) -> bool { true }
|
|
|
|
39 | | }
|
2017-05-17 14:19:44 +02:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: you are implementing `Hash` explicitly but have derived `PartialEq`
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/derive.rs:44:1
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
44 | / impl Hash for Bah {
|
|
|
|
45 | | fn hash<H: Hasher>(&self, _: &mut H) {}
|
|
|
|
46 | | }
|
2017-05-17 14:19:44 +02:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: `PartialEq` implemented here
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/derive.rs:41:10
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
41 | #[derive(PartialEq)]
|
2017-05-17 14:19:44 +02:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/derive.rs:51:1
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
51 | / impl Clone for Qux {
|
|
|
|
52 | | fn clone(&self) -> Self { Qux }
|
|
|
|
53 | | }
|
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`
|
2018-10-06 18:18:06 +02:00
|
|
|
--> $DIR/derive.rs:51:1
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
51 | / impl Clone for Qux {
|
|
|
|
52 | | fn clone(&self) -> Self { Qux }
|
|
|
|
53 | | }
|
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
|
|
|
|
--> $DIR/derive.rs:75:1
|
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
75 | / impl<'a> Clone for Lt<'a> {
|
2017-09-13 15:34:04 +02:00
|
|
|
76 | | fn clone(&self) -> Self { unimplemented!() }
|
|
|
|
77 | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
|
|
|
--> $DIR/derive.rs:75:1
|
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
75 | / impl<'a> Clone for Lt<'a> {
|
2017-09-13 15:34:04 +02:00
|
|
|
76 | | fn clone(&self) -> Self { unimplemented!() }
|
|
|
|
77 | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
|
|
|
--> $DIR/derive.rs:85:1
|
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
85 | / impl Clone for BigArray {
|
2017-09-13 15:34:04 +02:00
|
|
|
86 | | fn clone(&self) -> Self { unimplemented!() }
|
|
|
|
87 | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
|
|
|
--> $DIR/derive.rs:85:1
|
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
85 | / impl Clone for BigArray {
|
2017-09-13 15:34:04 +02:00
|
|
|
86 | | fn clone(&self) -> Self { unimplemented!() }
|
|
|
|
87 | | }
|
|
|
|
| |_^
|
|
|
|
|
2018-10-06 18:18:06 +02:00
|
|
|
error: you are implementing `Clone` explicitly on a `Copy` type
|
|
|
|
--> $DIR/derive.rs:95:1
|
|
|
|
|
|
|
|
|
95 | / impl Clone for FnPtr {
|
|
|
|
96 | | fn clone(&self) -> Self { unimplemented!() }
|
|
|
|
97 | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: consider deriving `Clone` or removing `Copy`
|
|
|
|
--> $DIR/derive.rs:95:1
|
|
|
|
|
|
|
|
|
95 | / impl Clone for FnPtr {
|
|
|
|
96 | | fn clone(&self) -> Self { unimplemented!() }
|
|
|
|
97 | | }
|
|
|
|
| |_^
|
|
|
|
|
2018-01-16 17:06:27 +01:00
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|