-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix hang in lexical_region_resolve #72087
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
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 |
I'm happy to r+, but I'd like to improve the understand the issue more deeply and then improve the comment a bit so we can remember it in the future. =) |
76cb078
to
c5eee55
Compare
c5eee55
to
e7b0204
Compare
@bors r+ |
📌 Commit e7b0204 has been approved by |
Adding |
…matsakis Fix hang in lexical_region_resolve Regionck was stuck in a loop where a region value was changing between two equal regions. Closes rust-lang#72051
unilaterally accepting for beta-backport. |
Rollup of 8 pull requests Successful merges: - rust-lang#71910 (Fix unused_parens false positive when using binary operations) - rust-lang#72087 (Fix hang in lexical_region_resolve) - rust-lang#72126 (Change `WorkProduct::saved_files` to an `Option`.) - rust-lang#72127 (add long error explanation for E0228) - rust-lang#72141 (Warn against thread::sleep in async fn) - rust-lang#72170 (use `require_lang_item` over `unwrap`.) - rust-lang#72191 (Clean up E0589 explanation) - rust-lang#72194 (Don't ICE on missing `Unsize` impl) Failed merges: r? @ghost
[beta] Rollup backports This includes: * Fail if I/O error occurs during testing rust-lang#72089 * Fix hang in lexical_region_resolve rust-lang#72087 * Fix E0284 to not use incorrect wording rust-lang#71960 * Bump pulldown-cmark rust-lang#71682
Regionck was stuck in a loop where a region value was changing between two equal regions.
Closes #72051