"consider dereferencing here" help doesn't account for operator precedence of the deref operator #105429
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.
Given the following code:
The current output is:
Ideally the output should look like:
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)
The text was updated successfully, but these errors were encountered: