rust/tests/ui/env-macro
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
..
env-arg-2-not-string-literal.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-arg-2-not-string-literal.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-env-overload.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-env.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-escaped-var.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-escaped-var.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-no-args.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-no-args.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-not-defined-custom.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-not-defined-custom.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-not-defined-default.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-not-defined-default.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-not-env.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-not-string-literal.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-not-string-literal.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-too-many-args.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
env-too-many-args.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
error-recovery-issue-55897.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
error-recovery-issue-55897.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
name-whitespace-issue-110547.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
name-whitespace-issue-110547.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
option_env-no-args.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
option_env-no-args.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
option_env-not-defined.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
option_env-not-string-literal.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
option_env-not-string-literal.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
option_env-too-many-args.rs Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00
option_env-too-many-args.stderr Move option_env! and env! tests to the env-macro directory 2024-03-17 21:59:40 +00:00