-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Unexpected borrow checker ICE #57989
Labels
A-borrow-checker
Area: The borrow checker
A-NLL
Area: Non-lexical lifetimes (NLL)
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
NLL-sound
Working towards the "invalid code does not compile" goal
P-high
High priority
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
This comment has been minimized.
This comment has been minimized.
jonas-schievink
added
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
C-bug
Category: This is a bug.
A-borrow-checker
Area: The borrow checker
labels
Jan 30, 2019
Just narrowed it down as far as I can; in this example the assignment to
This results in the following error message (now on the latest nightly):
Edit: You don't even need to say |
oli-obk
added
the
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
label
Jan 30, 2019
pnkfelix
added
P-high
High priority
NLL-sound
Working towards the "invalid code does not compile" goal
labels
Jan 30, 2019
Centril
added a commit
to Centril/rust
that referenced
this issue
Jan 30, 2019
… r=oli-obk Pass correct arguments to places_conflict The borrow place *must* be a place that we track borrows for, otherwise we will likely ICE. Closes rust-lang#57989
Centril
added a commit
to Centril/rust
that referenced
this issue
Jan 30, 2019
… r=oli-obk Pass correct arguments to places_conflict The borrow place *must* be a place that we track borrows for, otherwise we will likely ICE. Closes rust-lang#57989
Centril
added a commit
to Centril/rust
that referenced
this issue
Jan 31, 2019
… r=oli-obk Pass correct arguments to places_conflict The borrow place *must* be a place that we track borrows for, otherwise we will likely ICE. Closes rust-lang#57989
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-borrow-checker
Area: The borrow checker
A-NLL
Area: Non-lexical lifetimes (NLL)
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
NLL-sound
Working towards the "invalid code does not compile" goal
P-high
High priority
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Error message
Function it was working on when it crashed (apologies, this is in the middle of a refactor so it's a mess; I can provide more context or try to boil it down if needed):
The text was updated successfully, but these errors were encountered: