-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
[NLL] Use better span for initializing a variable twice #51926
Conversation
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
2d1a92d
to
c613aa5
Compare
@bors r+ |
📌 Commit c613aa5 has been approved by |
…r=nikomatsakis [NLL] Use better span for initializing a variable twice Closes rust-lang#51217 When assigning to a (projection from a) local immutable local which starts initialised (everything except `let PATTERN;`): * Point to the declaration of that local * Make the error message refer to the local, rather than the projection. r? @nikomatsakis
[NLL] Use better span for initializing a variable twice Closes #51217 When assigning to a (projection from a) local immutable local which starts initialised (everything except `let PATTERN;`): * Point to the declaration of that local * Make the error message refer to the local, rather than the projection. r? @nikomatsakis
☀️ Test successful - status-appveyor, status-travis |
Closes #51217
When assigning to a (projection from a) local immutable local which starts initialised (everything except
let PATTERN;
):r? @nikomatsakis