summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/derived_hash_with_manual_eq.stderr
blob: 230940f25fb60ca1bf6c89c74c32a5b9962feb6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
  --> $DIR/derived_hash_with_manual_eq.rs:12:10
   |
LL | #[derive(Hash)]
   |          ^^^^
   |
note: `PartialEq` implemented here
  --> $DIR/derived_hash_with_manual_eq.rs:15: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
  --> $DIR/derived_hash_with_manual_eq.rs:21:10
   |
LL | #[derive(Hash)]
   |          ^^^^
   |
note: `PartialEq` implemented here
  --> $DIR/derived_hash_with_manual_eq.rs:24: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