-
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
LLVM assertion error when dereferencing "&mut Iterator<Item=Something>" from function parameter #21379
Comments
I compiled Rust from source and the previous error becomes this:
Rust version:
|
I found out that the problem is on the loop: for i in *iter {
println!("{}", i);
} If I replace this with the expanded version of the loop: loop {
match (*iter).next() {
Some(ref i) => println!("{}", i),
None => break
}
} it compiles and works as expected. So, the problem seems to be that the compiler is unable to dereference the Iterator trait, maybe it has something to do with the fact that I am forcing Item to be of a specific type? (i.e. |
Minimal code: fn foo(it: &mut Iterator<Item = i32>) {
for x in *it {}
}
fn main() { } The ICE:
Removing the associated type results in a variant of #21137 |
Gah, I feel like I've fixed this bug once before. |
Duplicate of #20605 To avoid the LLVM assertion, don't dereference the iterator in the for loop. This doesn't crash: fn foo(it: &mut Iterator<Item = i32>) {
for x in it {}
//~^ error: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements
}
fn main() { } Instead, you get a compiler error, I think that compiler error maybe be a different bug. |
I filled issue #21655 for the |
Offending code:
Compiler error (formatted):
Rust version:
The text was updated successfully, but these errors were encountered: