2019-10-28 07:34:29 +01:00
|
|
|
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
2022-05-21 13:24:00 +02:00
|
|
|
--> $DIR/derive_hash_xor_eq.rs:12:10
|
2019-10-28 07:34:29 +01:00
|
|
|
|
|
|
|
|
LL | #[derive(Hash)]
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: `#[deny(clippy::derive_hash_xor_eq)]` on by default
|
|
|
|
note: `PartialEq` implemented here
|
2022-05-21 13:24:00 +02:00
|
|
|
--> $DIR/derive_hash_xor_eq.rs:15:1
|
2019-10-28 07:34:29 +01:00
|
|
|
|
|
2022-02-13 16:27:59 +01:00
|
|
|
LL | impl PartialEq for Bar {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-10-28 07:34:29 +01:00
|
|
|
|
|
|
|
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
2022-05-21 13:24:00 +02:00
|
|
|
--> $DIR/derive_hash_xor_eq.rs:21:10
|
2019-10-28 07:34:29 +01:00
|
|
|
|
|
|
|
|
LL | #[derive(Hash)]
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
note: `PartialEq` implemented here
|
2022-05-21 13:24:00 +02:00
|
|
|
--> $DIR/derive_hash_xor_eq.rs:24:1
|
2019-10-28 07:34:29 +01:00
|
|
|
|
|
2022-02-13 16:27:59 +01:00
|
|
|
LL | impl PartialEq<Baz> for Baz {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-10-28 07:34:29 +01:00
|
|
|
|
|
|
|
error: you are implementing `Hash` explicitly but have derived `PartialEq`
|
2022-05-21 13:24:00 +02:00
|
|
|
--> $DIR/derive_hash_xor_eq.rs:33:1
|
2019-10-28 07:34:29 +01:00
|
|
|
|
|
2019-11-01 20:12:08 +01:00
|
|
|
LL | / impl std::hash::Hash for Bah {
|
|
|
|
LL | | fn hash<H: std::hash::Hasher>(&self, _: &mut H) {}
|
2019-10-28 07:34:29 +01:00
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: `PartialEq` implemented here
|
2022-05-21 13:24:00 +02:00
|
|
|
--> $DIR/derive_hash_xor_eq.rs:30:10
|
2019-10-28 07:34:29 +01:00
|
|
|
|
|
|
|
|
LL | #[derive(PartialEq)]
|
|
|
|
| ^^^^^^^^^
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-10-28 07:34:29 +01:00
|
|
|
|
2019-11-01 20:12:08 +01:00
|
|
|
error: you are implementing `Hash` explicitly but have derived `PartialEq`
|
2022-05-21 13:24:00 +02:00
|
|
|
--> $DIR/derive_hash_xor_eq.rs:51:5
|
2019-11-01 20:12:08 +01:00
|
|
|
|
|
|
|
|
LL | / impl Hash for Foo3 {
|
|
|
|
LL | | fn hash<H: std::hash::Hasher>(&self, _: &mut H) {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
note: `PartialEq` implemented here
|
2022-05-21 13:24:00 +02:00
|
|
|
--> $DIR/derive_hash_xor_eq.rs:48:14
|
2019-11-01 20:12:08 +01:00
|
|
|
|
|
|
|
|
LL | #[derive(PartialEq)]
|
|
|
|
| ^^^^^^^^^
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-11-01 20:12:08 +01:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2019-10-28 07:34:29 +01:00
|
|
|
|