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

"consider dereferencing here" help doesn't account for operator precedence of the deref operator #105429

Closed
shepmaster opened this issue Dec 7, 2022 · 0 comments · Fixed by #105595
Assignees
Labels
A-diagnostics Area: Messages for errors, warnings, and lints A-suggestion-diagnostics Area: Suggestions generated by the compiler applied by `cargo fix` D-invalid-suggestion Diagnostics: A structured suggestion resulting in incorrect code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@shepmaster
Copy link
Member

Given the following code:

struct SourceStruct;
struct TargetStruct;

impl From<SourceStruct> for TargetStruct {
    fn from(unchecked: SourceStruct) -> Self {
        TargetStruct
    }
}

fn main() {
    let a = &SourceStruct;
    let b: TargetStruct = a.into();
}

The current output is:

error[E0277]: the trait bound `TargetStruct: From<&SourceStruct>` is not satisfied
  --> src/main.rs:12:27
   |
12 |     let b: TargetStruct = a.into();
   |                           ^ ---- required by a bound introduced by this call
   |                           |
   |                           the trait `From<&SourceStruct>` is not implemented for `TargetStruct`
   |
   = note: required for `&SourceStruct` to implement `Into<TargetStruct>`
help: consider dereferencing here
   |
12 |     let b: TargetStruct = *a.into();
   |                           +

Ideally the output should look like:

help: consider dereferencing here
   |
12 |     let b: TargetStruct = (*a).into();
   |                           ++ +

The current suggestion will apply the dereference after the method call to .into(), which is not what is needed.

Really, that suggestion wouldn't even be suggested because the result also doesn't work, but that might be a bigger change.

Seen in 1.67.0-nightly (2022-12-06 b28d30e)

@shepmaster shepmaster added A-diagnostics Area: Messages for errors, warnings, and lints T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Dec 7, 2022
@estebank estebank added E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. A-suggestion-diagnostics Area: Suggestions generated by the compiler applied by `cargo fix` D-invalid-suggestion Diagnostics: A structured suggestion resulting in incorrect code. and removed E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. labels Dec 7, 2022
@TaKO8Ki TaKO8Ki self-assigned this Dec 12, 2022
@bors bors closed this as completed in 939880a Dec 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints A-suggestion-diagnostics Area: Suggestions generated by the compiler applied by `cargo fix` D-invalid-suggestion Diagnostics: A structured suggestion resulting in incorrect code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants