Suggest Struct::<'_>
instead of Self
when lifetime does not match
#101393
Labels
A-diagnostics
Area: Messages for errors, warnings, and lints
A-lifetimes
Area: Lifetimes / regions
A-suggestion-diagnostics
Area: Suggestions generated by the compiler applied by `cargo fix`
D-newcomer-roadblock
Diagnostics: Confusing error or lint; hard to understand for new users.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Heads-up: PR 100976 probably fixes this but I still felt its own issue was warranted (and didn't find an existing one).
Given the following code:
The current output is:
Ideally the output should look like:
Programmers not-infrequently expect
Self
to act as a type constructor and not fully aliased type (including lifetimes). UsingPath
in this context infers the lifetime, whereas usingSelf
make the lifetime exactly'a
.Though I haven't included it in my example, consider also the case when
Self
is used as the return type.Another recent URLO example which inspired this report.
The same error appears on stable, nightly, and beta. But see PR 100976 which may resolve this issue.
@rustbot label +A-lifetimes +A-suggestion-diagnostics +D-newcomer-roadblock
The text was updated successfully, but these errors were encountered: