rust/tests/ui/lint/non-snake-case
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
..
allow-snake-case-field-destructuring-issue-89469.rs tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-non-snake-case-crate.cdylib_.stderr Fix directives for lint-non-snake-case-crate 2024-10-29 16:40:06 -07:00
lint-non-snake-case-crate.dylib_.stderr Fix directives for lint-non-snake-case-crate 2024-10-29 16:40:06 -07:00
lint-non-snake-case-crate.lib_.stderr Fix directives for lint-non-snake-case-crate 2024-10-29 16:40:06 -07:00
lint-non-snake-case-crate.proc_macro_.stderr Fix directives for lint-non-snake-case-crate 2024-10-29 16:40:06 -07:00
lint-non-snake-case-crate.rlib_.stderr Fix directives for lint-non-snake-case-crate 2024-10-29 16:40:06 -07:00
lint-non-snake-case-crate.rs Fix directives for lint-non-snake-case-crate 2024-10-29 16:40:06 -07:00
lint-non-snake-case-crate.staticlib_.stderr Fix directives for lint-non-snake-case-crate 2024-10-29 16:40:06 -07:00
lint-non-snake-case-functions.rs tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-non-snake-case-functions.stderr tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-non-snake-case-identifiers-suggestion-reserved.rs tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-non-snake-case-identifiers-suggestion-reserved.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
lint-non-snake-case-lifetimes.rs tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-non-snake-case-lifetimes.stderr tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-non-snake-case-modules.rs tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-non-snake-case-modules.stderr tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-non-snake-case-no-lowercase-equivalent.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
lint-nonstandard-style-unicode-2.rs tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-nonstandard-style-unicode-2.stderr tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-uppercase-variables.rs tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
lint-uppercase-variables.stderr tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
no-snake-case-warning-for-field-puns-issue-66362.rs tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
no-snake-case-warning-for-field-puns-issue-66362.stderr tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00
non-snake-ffi-issue-31924.rs tests/ui/lint: Move 19 tests to new non-snake-case subdir 2024-06-15 18:18:43 +02:00