summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/cmp_owned/asymmetric_partial_eq.stderr
blob: 43bf8851fc620d700fe9adcc457f8d88466c2780 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
error: this creates an owned instance just for comparison
  --> $DIR/asymmetric_partial_eq.rs:42:12
   |
LL |         if borrowed.to_owned() == owned {}
   |            ^^^^^^^^^^^^^^^^^^^ help: try: `borrowed`
   |
   = note: `-D clippy::cmp-owned` implied by `-D warnings`

error: this creates an owned instance just for comparison
  --> $DIR/asymmetric_partial_eq.rs:43:21
   |
LL |         if owned == borrowed.to_owned() {}
   |            ---------^^^^^^^^^^^^^^^^^^^
   |            |
   |            help: try: `borrowed == owned`

error: this creates an owned instance just for comparison
  --> $DIR/asymmetric_partial_eq.rs:61:21
   |
LL |         if owned == borrowed.to_owned() {}
   |                     ^^^^^^^^^^^^^^^^^^^ help: try: `borrowed`

error: this creates an owned instance just for comparison
  --> $DIR/asymmetric_partial_eq.rs:62:12
   |
LL |         if borrowed.to_owned() == owned {}
   |            ^^^^^^^^^^^^^^^^^^^---------
   |            |
   |            help: try: `owned == borrowed`

error: this creates an owned instance just for comparison
  --> $DIR/asymmetric_partial_eq.rs:88:20
   |
LL |         if "Hi" == borrowed.to_string() {}
   |            --------^^^^^^^^^^^^^^^^^^^^
   |            |
   |            help: try: `borrowed == "Hi"`

error: this creates an owned instance just for comparison
  --> $DIR/asymmetric_partial_eq.rs:89:12
   |
LL |         if borrowed.to_string() == "Hi" {}
   |            ^^^^^^^^^^^^^^^^^^^^ help: try: `borrowed`

error: aborting due to 6 previous errors