mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
47 lines
1.7 KiB
Text
47 lines
1.7 KiB
Text
error: this creates an owned instance just for comparison
|
|
--> tests/ui/cmp_owned/asymmetric_partial_eq.rs:46:12
|
|
|
|
|
LL | if borrowed.to_owned() == owned {}
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try: `borrowed`
|
|
|
|
|
= 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
|
|
--> tests/ui/cmp_owned/asymmetric_partial_eq.rs:47:21
|
|
|
|
|
LL | if owned == borrowed.to_owned() {}
|
|
| ---------^^^^^^^^^^^^^^^^^^^
|
|
| |
|
|
| help: try: `borrowed == owned`
|
|
|
|
error: this creates an owned instance just for comparison
|
|
--> tests/ui/cmp_owned/asymmetric_partial_eq.rs:65:21
|
|
|
|
|
LL | if owned == borrowed.to_owned() {}
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try: `borrowed`
|
|
|
|
error: this creates an owned instance just for comparison
|
|
--> tests/ui/cmp_owned/asymmetric_partial_eq.rs:66:12
|
|
|
|
|
LL | if borrowed.to_owned() == owned {}
|
|
| ^^^^^^^^^^^^^^^^^^^---------
|
|
| |
|
|
| help: try: `owned == borrowed`
|
|
|
|
error: this creates an owned instance just for comparison
|
|
--> tests/ui/cmp_owned/asymmetric_partial_eq.rs:92:20
|
|
|
|
|
LL | if "Hi" == borrowed.to_string() {}
|
|
| --------^^^^^^^^^^^^^^^^^^^^
|
|
| |
|
|
| help: try: `borrowed == "Hi"`
|
|
|
|
error: this creates an owned instance just for comparison
|
|
--> tests/ui/cmp_owned/asymmetric_partial_eq.rs:93:12
|
|
|
|
|
LL | if borrowed.to_string() == "Hi" {}
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: try: `borrowed`
|
|
|
|
error: aborting due to 6 previous errors
|
|
|