mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
29 lines
1 KiB
Text
29 lines
1 KiB
Text
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
|
--> tests/ui/derived_hash_with_manual_eq.rs:12:10
|
|
|
|
|
LL | #[derive(Hash)]
|
|
| ^^^^
|
|
|
|
|
note: `PartialEq` implemented here
|
|
--> tests/ui/derived_hash_with_manual_eq.rs:16:1
|
|
|
|
|
LL | impl PartialEq for Bar {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
= note: `#[deny(clippy::derived_hash_with_manual_eq)]` on by default
|
|
= note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
|
--> tests/ui/derived_hash_with_manual_eq.rs:22:10
|
|
|
|
|
LL | #[derive(Hash)]
|
|
| ^^^^
|
|
|
|
|
note: `PartialEq` implemented here
|
|
--> tests/ui/derived_hash_with_manual_eq.rs:26:1
|
|
|
|
|
LL | impl PartialEq<Baz> for Baz {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
= note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 2 previous errors
|
|
|