mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
18 lines
504 B
Text
18 lines
504 B
Text
error: this creates an owned instance just for comparison
|
|
--> $DIR/comparison_flip.rs:8:8
|
|
|
|
|
LL | if a.to_string() != "bar" {
|
|
| ^^^^^^^^^^^^^ help: try: `a`
|
|
|
|
|
= note: `-D clippy::cmp-owned` implied by `-D warnings`
|
|
|
|
error: this creates an owned instance just for comparison
|
|
--> $DIR/comparison_flip.rs:12:17
|
|
|
|
|
LL | if "bar" != a.to_string() {
|
|
| ---------^^^^^^^^^^^^^
|
|
| |
|
|
| help: try: `a != "bar"`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|