rust/tests/ui/structs/default-field-values
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
..
auxiliary
empty-struct.rs Disallow A { .. } if A has no fields 2025-01-18 21:05:09 +00:00
empty-struct.stderr Disallow A { .. } if A has no fields 2025-01-18 21:05:09 +00:00
failures.rs
failures.stderr
invalid-const.rs
invalid-const.stderr
non-exhaustive-ctor.disabled.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
non-exhaustive-ctor.enabled.fixed Detect missing fields with default values and suggest .. 2025-01-21 21:26:37 +00:00
non-exhaustive-ctor.enabled.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
non-exhaustive-ctor.rs Detect missing fields with default values and suggest .. 2025-01-21 21:26:37 +00:00
support.rs
use-normalized-ty-for-default-struct-value.rs
visibility.rs Emit a single privacy error for multiple fields on the same struct expression 2025-01-18 20:33:15 +00:00
visibility.stderr Emit a single privacy error for multiple fields on the same struct expression 2025-01-18 20:33:15 +00:00