Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show diff suggestion format on verbose replacement #127541

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Aug 15, 2024

  1. 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;
       |
    ```
    estebank committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    420364d View commit details
    Browse the repository at this point in the history