]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/derive_partial_eq_without_eq.stderr
Rollup merge of #97066 - petrochenkov:nofragkind, r=camelid
[rust.git] / src / tools / clippy / tests / ui / derive_partial_eq_without_eq.stderr
1 error: you are deriving `PartialEq` and can implement `Eq`
2   --> $DIR/derive_partial_eq_without_eq.rs:13:17
3    |
4 LL | #[derive(Debug, PartialEq)]
5    |                 ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
6    |
7    = note: `-D clippy::derive-partial-eq-without-eq` implied by `-D warnings`
8
9 error: you are deriving `PartialEq` and can implement `Eq`
10   --> $DIR/derive_partial_eq_without_eq.rs:61:10
11    |
12 LL | #[derive(PartialEq)]
13    |          ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
14
15 error: you are deriving `PartialEq` and can implement `Eq`
16   --> $DIR/derive_partial_eq_without_eq.rs:67:10
17    |
18 LL | #[derive(PartialEq)]
19    |          ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
20
21 error: you are deriving `PartialEq` and can implement `Eq`
22   --> $DIR/derive_partial_eq_without_eq.rs:70:10
23    |
24 LL | #[derive(PartialEq)]
25    |          ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
26
27 error: you are deriving `PartialEq` and can implement `Eq`
28   --> $DIR/derive_partial_eq_without_eq.rs:76:10
29    |
30 LL | #[derive(PartialEq)]
31    |          ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
32
33 error: you are deriving `PartialEq` and can implement `Eq`
34   --> $DIR/derive_partial_eq_without_eq.rs:82:10
35    |
36 LL | #[derive(PartialEq)]
37    |          ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
38
39 error: you are deriving `PartialEq` and can implement `Eq`
40   --> $DIR/derive_partial_eq_without_eq.rs:95:17
41    |
42 LL | #[derive(Debug, PartialEq, Clone)]
43    |                 ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
44
45 error: aborting due to 7 previous errors
46