2019-10-28 01:34:29 -05:00
|
|
|
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derived_hash_with_manual_eq.rs:12:10
|
2019-10-28 01:34:29 -05:00
|
|
|
|
|
|
|
|
LL | #[derive(Hash)]
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
note: `PartialEq` implemented here
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derived_hash_with_manual_eq.rs:16:1
|
2019-10-28 01:34:29 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | impl PartialEq for Bar {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2023-01-12 07:22:18 -06:00
|
|
|
= note: `#[deny(clippy::derived_hash_with_manual_eq)]` on by default
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-10-28 01:34:29 -05:00
|
|
|
|
|
|
|
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derived_hash_with_manual_eq.rs:22:10
|
2019-10-28 01:34:29 -05:00
|
|
|
|
|
|
|
|
LL | #[derive(Hash)]
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
note: `PartialEq` implemented here
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/derived_hash_with_manual_eq.rs:26:1
|
2019-10-28 01:34:29 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | impl PartialEq<Baz> for Baz {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-10-28 01:34:29 -05:00
|
|
|
|
2023-01-09 14:29:42 -06:00
|
|
|
error: aborting due to 2 previous errors
|
2019-10-28 01:34:29 -05:00
|
|
|
|