Don't lint while_let_loop when significant drop order would change#8666
Merged
bors merged 2 commits intorust-lang:masterfrom Jun 30, 2022
Merged
Don't lint while_let_loop when significant drop order would change#8666bors merged 2 commits intorust-lang:masterfrom
while_let_loop when significant drop order would change#8666bors merged 2 commits intorust-lang:masterfrom
Conversation
|
r? @camsteffen (rust-highfive has picked a reviewer for you, use r? to override) |
91e4214 to
b627856
Compare
while_let_loop when significant drop order would change
b627856 to
b5bffbb
Compare
Contributor
|
☔ The latest upstream changes (presumably #8647) made this pull request unmergeable. Please resolve the merge conflicts. |
Member
|
r? @dswij |
dswij
approved these changes
Jun 29, 2022
Member
dswij
left a comment
There was a problem hiding this comment.
This looks great, thanks for the changes!
Member
|
Looks like there's some conflicts, and after that I think this is good to merge |
b5bffbb to
e48c92a
Compare
e48c92a to
adbc849
Compare
Member
|
Thanks! @bors r+ |
Contributor
|
📌 Commit adbc849 has been approved by |
Contributor
Contributor
|
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
This was referenced Jun 30, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes #7226
fixes #7913
fixes #5717
For #5717 it may not stay fully fixed. This is only completely fixed right now due to all the allowed drop impls have
#[may_dangle]on their drop impls. This may get changed in the future based on how significant drops are determined, but the example listed withRefCellshouldn't break.changelog: Don't lint
while_let_loopwhen the order of significant drops would change