rust/tests/ui/derived_hash_with_manual_eq.stderr

30 lines
1008 B
Plaintext
Raw Normal View History

error: you are deriving `Hash` but have implemented `PartialEq` explicitly
2023-01-12 14:22:18 +01:00
--> $DIR/derived_hash_with_manual_eq.rs:12:10
|
LL | #[derive(Hash)]
| ^^^^
|
note: `PartialEq` implemented here
--> $DIR/derived_hash_with_manual_eq.rs:16:1
|
2022-02-13 16:27:59 +01:00
LL | impl PartialEq for Bar {
| ^^^^^^^^^^^^^^^^^^^^^^
2023-01-12 14:22:18 +01:00
= 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
--> $DIR/derived_hash_with_manual_eq.rs:22:10
|
LL | #[derive(Hash)]
| ^^^^
|
note: `PartialEq` implemented here
--> $DIR/derived_hash_with_manual_eq.rs:26:1
|
2022-02-13 16:27:59 +01:00
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)
2023-01-09 21:29:42 +01:00
error: aborting due to 2 previous errors