summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/cmp_owned/comparison_flip.stderr
blob: 09a495996f2cc5306dbf2796b84dd51f15458ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error: this creates an owned instance just for comparison
  --> $DIR/comparison_flip.rs:6:8
   |
LL |     if a.to_string() != "bar" {
   |        ^^^^^^^^^^^^^ help: try: `a`
   |
   = note: `-D clippy::cmp-owned` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::cmp_owned)]`

error: this creates an owned instance just for comparison
  --> $DIR/comparison_flip.rs:10:17
   |
LL |     if "bar" != a.to_string() {
   |        ---------^^^^^^^^^^^^^
   |        |
   |        help: try: `a != "bar"`

error: aborting due to 2 previous errors