rust/tests/ui/suggestions/partialeq_suggest_swap.stderr
Esteban Küber f0845adb0c Show diff suggestion format on verbose replacement
```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:7:15
   |
LL |     let _ = 2.l;
   |               ^
   |
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
   |
LL -     let _ = 2.l;
LL +     let _ = 2.0f64;
   |
```
2025-02-10 20:21:39 +00:00

19 lines
452 B
Plaintext

error[E0308]: mismatched types
--> $DIR/partialeq_suggest_swap.rs:10:13
|
LL | 4i32 == T(4);
| ---- ^^^^ expected `i32`, found `T`
| |
| expected because this is `i32`
|
= note: `T` implements `PartialEq<i32>`
help: consider swapping the equality
|
LL - 4i32 == T(4);
LL + T(4) == 4i32;
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0308`.