-
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
fix Box::into_unique #78446
fix Box::into_unique #78446
Conversation
Thanks for fixing this! :) |
@bors r+ |
📌 Commit ab374dc has been approved by |
@bors p=1 |
⌛ Testing commit ab374dc with merge 167f68bf6cc4934c4a5085e829ae26a63410581b... |
💔 Test failed - checks-actions |
@bors retry |
@pietroalbini is there an issue tracking these crates.io download failures? They seem to happen more often than one would hope. |
☀️ Test successful - checks-actions |
#77187 broke Stacked Borrows pointer tagging around
Box::into_unique
(this is caused byBox
being a special case in the type system, which box-internal code needs to account for). This PR fixes that.r? @Amanieu Cc @TimDiekmann
Fixes #78419.