-
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] [conservative_impl_trait] escaping regions in predicate #41182
Comments
I've run into the same error. here's my data: The backtrace it produces is
My rustc
|
I just ran into this issue. It seems to occur when you take in a reference as function argument which does not have to be related to whatever you return. The code below gives us the same ICE: static SLICE: [usize; 1] = [0; 1];
fn ice(_: &str) -> impl Iterator<Item=&usize> {
SLICE.iter()
} While the following code does not. It gives the expected error message that a lifetime parameter is expected. static SLICE: [usize; 1] = [0; 1];
fn clear_error_message() -> impl Iterator<Item=&usize> {
SLICE.iter()
} |
I ran into this bug last night. My case is similar to others. @Zalastra's first example can be fixed using separate lifetime parameters for the argument and the return value:
|
Getting this myself in multiple situations when returning references as items. |
I also ran into this with the function signature |
I ran into this with the |
My cube of ICE:
rustc 1.19.0-nightly (4bf5c99 2017-06-10) |
Got same internal compiler error on this: #![feature(conservative_impl_trait)]
struct S {
v: Vec<u32>,
}
impl S {
//fn all<'a>(&'a self) -> impl Iterator<Item=&'a u32> {
fn all(&self) -> impl Iterator<Item=&u32> {
self.v.iter()
}
}
fn main() {
let s = S { v: Vec::new() };
s.all().count();
} Specifying lifetimes (as in comment) fixes the problem. |
This is fixed on the current nightly. |
Using explicit lifetimes does not trigger this ICE.
The text was updated successfully, but these errors were encountered: