-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
two phase borrows: ensure reservations are limited to assignments to temps #46746
Comments
My thinking here is that we should add an (We could perhaps go further and try to make the two-phase borrow system force an immediate activation when it sees an assignment to a non-temporary, if we discover that the supposed invariant does not hold.) |
cc #46037 |
Hmm it seems according to https://github.com/rust-lang/rust/blob/master/src/test/compile-fail/borrowck/borrowck-issue-14498.rs that the proposed invariant does not hold. Good thing we attempted to check it! Compiler error (once I added a relatively narrow assertion to the MIR borrowck):
|
…m-assignments-to-locals, r=arielb1 Ensure separate activations only occur for assignments to locals Ensure separate activations only occur for assignments to locals, not projections. Fix rust-lang#46746. (I didn't make a regression test because we do not really have a good way to directly express the case that we are trying to catch, because we cannot write MIR directly.)
Spawned off of #46537 (comment)
@arielb1 put its simply:
The text was updated successfully, but these errors were encountered: