-
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
ICE: thread 'rustc' panicked at 'region constraints already solved' #87657
Comments
I got the same issue on the latest nightly and on play.rust-lang.org, without using rustc-private // lazy_static::lazy_static! {
// static ref LOADERS: Vec<&'static u8> = Vec::new();
// }
const LOADERS: &Vec<&'static u8> = &Vec::new();
pub fn break_code() -> Option<&'static u8> {
for loader in *LOADERS {
return Some(loader);
}
None
} The commented out |
searched nightlies: from nightly-2021-07-29 to nightly-2021-08-02 bisected with cargo-bisect-rustc v0.6.0Host triple: x86_64-pc-windows-msvc cargo bisect-rustc --regress=ice I think this might have been introduced by #87559, in particular this piece of code: rust/compiler/rustc_mir/src/borrow_check/diagnostics/move_errors.rs Lines 412 to 418 in d08460e
|
Just checked and thankfully it didn't land in beta. |
@rustbot claim |
Assigning priority as discussed in the Zulip thread of the Prioritization Working Group. @rustbot label -I-prioritize +P-high |
…ion, r=oli-obk Avoid ICE caused by suggestion When suggesting dereferencing something that can be iterable in a `for` loop, erase lifetimes and use a fresh `ty::ParamEnv` to avoid 'region constraints already solved' panic. Fix rust-lang#87657, fix rust-lang#87709, fix rust-lang#87651.
…ion, r=oli-obk Avoid ICE caused by suggestion When suggesting dereferencing something that can be iterable in a `for` loop, erase lifetimes and use a fresh `ty::ParamEnv` to avoid 'region constraints already solved' panic. Fix rust-lang#87657, fix rust-lang#87709, fix rust-lang#87651.
Code
Compiles with
&item
replaced foritem
Meta
rustc --version --verbose
:Error output
Backtrace
The text was updated successfully, but these errors were encountered: