-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Fix borrowck compiler errors for upvars contain "spurious" dereferences #46087
Conversation
fe6b3bf
to
9c9d094
Compare
src/librustc_mir/borrow_check.rs
Outdated
if autoderef { | ||
self.append_lvalue_to_string(&proj.base, buf, Some(autoderef)); | ||
} else { | ||
buf.push_str(&"(*"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bors r+ We'll let the paren thing sort itself out in rebasing. =) |
📌 Commit 9c9d094 has been approved by |
☔ The latest upstream changes (presumably #46040) made this pull request unmergeable. Please resolve the merge conflicts. |
Needs rebase. =) |
4be9b35
to
5cf3e2e
Compare
@nikomatsakis Done. |
@nikomatsakis Seems like an unrelated build failure. |
You accidentally pushed a submodule update, please fix that |
@bors r+ |
📌 Commit 392e513 has been approved by |
@bors r+ |
📌 Commit d059b57 has been approved by |
Fix borrowck compiler errors for upvars contain "spurious" dereferences Fixes #46003
☀️ Test successful - status-appveyor, status-travis |
Fixes #46003