rust/tests/ui/lifetimes/raw
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
..
gen-lt.e2024.stderr Update more 2024 tests to remove -Zunstable-options 2024-11-28 14:32:45 -08:00
gen-lt.rs Update more 2024 tests to remove -Zunstable-options 2024-11-28 14:32:45 -08:00
immediately-followed-by-lt.e2021.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
immediately-followed-by-lt.rs Only error raw lifetime followed by \' in edition 2021+ 2024-12-01 05:23:16 +00:00
lifetimes-eq.rs
macro-lt.rs
multiple-prefixes.rs
multiple-prefixes.stderr
prim-lt.rs
raw-lt-invalid-raw-id.rs Enforce that raw lifetime identifiers must be valid raw identifiers 2024-10-30 14:45:22 +00:00
raw-lt-invalid-raw-id.stderr Enforce that raw lifetime identifiers must be valid raw identifiers 2024-10-30 14:45:22 +00:00
simple.rs
static-lt.rs
three-tokens.rs