-
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
Problem with borrow checker and AddAssign #52126
Comments
This is a regression introduced in Rust 1.23.0. On 1.22.0 the example was rejected as:
|
visiting for triage. Assigning to self and marking P-high. |
Bisected over the nightlies and narrowed it to the range 8b22e70...2be4cc0 Transcript showing end of bisection:
And here's the log of bors commits during that range of time:
|
Skimming over the log, here are my initial suspicious looking PRs. (Note that I'm trying to cast my net as broadly as possible.)
(I'm now going to bisect over the aforementioned commit range, using the above list of suspects as a rough set of hints as to which points in the history to inspect first.) |
cc @eddyb and @nikomatsakis |
I might have a (nice small) fix for this. |
…iant, r=eddyb LHS of assign op is invariant This addresses a bug injected by #45435. That PR changed the way we type-check `LHS <op> RHS` to coerce the LHS to the expected supertype in much the same way that we coerce the RHS. The problem is that when we have a case of `LHS <op>= RHS`, we do not want to coerce to a supertype; we need the type to remain invariant. Otherwise we risk leaking a value with short-lifetimes into a expression context that needs to satisfy a long lifetime. Fix #52126
(this was fixed independently of NLL.) |
Hi,
there seems to be a problem with the borrow checker that allows references to exist after the borrowed data has been dropped.
I wrote a wrapper struct for a HashMap that would allow me to add frequencies in a manner similar to the Counter known from Python.
When using the
+=
operator to add two of these structs the borrow checker seems to be unable to detect when borrowed values are dropped. The code compiles allowing invalid pointers.The compiler rejects the code when
.add_assign()
is called explicitly.I tried this code (Playground):
I expected to see this happen:
The compiler should reject this code
Instead, this happened:
The program compiles and results in unpredictable behaviour. Sometimes the program panics at runtime, sometimes invalid strings are printed.
Meta
rustc --version --verbose
:rustc 1.26.0 (a775680 2018-05-07)
binary: rustc
commit-hash: a775680
commit-date: 2018-05-07
host: x86_64-unknown-linux-gnu
release: 1.26.0
LLVM version: 6.0
Backtrace:
The text was updated successfully, but these errors were encountered: