rust/tests/ui/ufcs
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
..
bad-builder.rs test 2024-02-20 03:01:35 +00:00
bad-builder.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
ufcs-explicit-self-bad.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
ufcs-explicit-self-bad.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
ufcs-partially-resolved.rs Use smart-resolve when checking for trait in RHS of UFCS 2023-04-07 05:33:52 +00:00
ufcs-partially-resolved.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
ufcs-polymorphic-paths.rs [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives 2024-02-16 20:02:50 +00:00
ufcs-qpath-missing-params.rs diagnostics: remove inconsistent English article "this" from E0107 2023-02-23 10:27:06 -07:00
ufcs-qpath-missing-params.stderr Revert suggestion verbosity change 2024-07-22 22:51:53 +00:00
ufcs-qpath-self-mismatch.rs
ufcs-qpath-self-mismatch.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00