rust/tests/ui/pattern/bindings-after-at
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
..
bind-by-copy-or-pat.rs Add test for the known case that doesn't work 2024-02-28 01:41:25 +01:00
bind-by-copy-or-pat.stderr Add test for the known case that doesn't work 2024-02-28 01:41:25 +01:00
bind-by-copy.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
bind-by-move-neither-can-live-while-the-other-survives-1.rs
bind-by-move-neither-can-live-while-the-other-survives-1.stderr Tweak wording 2024-03-13 23:05:17 +00:00
bind-by-move-no-subbindings-fun-param.rs
bind-by-move-no-subbindings-fun-param.stderr
borrowck-move-and-move.rs
borrowck-move-and-move.stderr
borrowck-pat-at-and-box-pass.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
borrowck-pat-at-and-box.rs
borrowck-pat-at-and-box.stderr
borrowck-pat-by-copy-bindings-in-at.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
borrowck-pat-by-move-and-ref-inverse-promotion.rs
borrowck-pat-by-move-and-ref-inverse-promotion.stderr Tweak wording 2024-03-13 23:05:17 +00:00
borrowck-pat-by-move-and-ref-inverse.rs
borrowck-pat-by-move-and-ref-inverse.stderr Tweak wording 2024-03-13 23:05:17 +00:00
borrowck-pat-by-move-and-ref.rs
borrowck-pat-by-move-and-ref.stderr
borrowck-pat-ref-both-sides.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
borrowck-pat-ref-mut-and-ref.rs
borrowck-pat-ref-mut-and-ref.stderr Peel off explicit (or implicit) deref before suggesting clone on move error in borrowck 2024-07-26 14:41:56 -04:00
borrowck-pat-ref-mut-twice.rs
borrowck-pat-ref-mut-twice.stderr Tweak wording 2024-03-13 23:05:17 +00:00
box-patterns.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
copy-and-move-mixed.rs
copy-and-move-mixed.stderr
default-binding-modes-both-sides-independent.rs
default-binding-modes-both-sides-independent.stderr Tweak wording 2024-03-13 23:05:17 +00:00
nested-binding-mode-lint.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
nested-binding-modes-mut.rs
nested-binding-modes-mut.stderr
nested-binding-modes-ref.rs
nested-binding-modes-ref.stderr
nested-patterns.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
nested-type-ascription-syntactically-invalid.rs
nested-type-ascription-syntactically-invalid.stderr parse guard patterns 2024-11-24 19:42:33 +01:00
or-patterns-box-patterns.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
or-patterns-slice-patterns.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
or-patterns.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
pat-at-same-name-both.rs
pat-at-same-name-both.stderr Better span for "make binding mutable" suggestion 2024-07-04 02:02:21 +00:00
slice-patterns.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
wild-before-at-syntactically-rejected.rs
wild-before-at-syntactically-rejected.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00