-
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
ICE: find_associated_type_in_generics(): didn't find associated type anywhere in the generics list #17732
Labels
A-associated-items
Area: Associated items (types, constants & functions)
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Comments
tikue
changed the title
ICE: didn't find associated type anywhere in the generics list
ICE: find_associated_type_in_generics(): didn't find associated type anywhere in the generics list
Oct 3, 2014
huonw
added
the
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
label
Oct 3, 2014
cc-ing @aturon. Another variation of this bug:
produces:
|
cc @pcwalton |
huonw
added
the
A-associated-items
Area: Associated items (types, constants & functions)
label
Nov 20, 2014
Symptom of #18768 |
Yet another variation #![feature(associated_types)]
trait Bindable {
type Ret;
}
trait Foo<A> where A: Bindable {
fn func<B>(b: B) -> <A as Bindable>::Ret;
}
fn main() {}
|
japaric
pushed a commit
to japaric/rust
that referenced
this issue
Jan 1, 2015
Closes rust-lang#17732 Closes rust-lang#18819 Closes rust-lang#19479 Closes rust-lang#19631 Closes rust-lang#19632 Closes rust-lang#19850 Closes rust-lang#19883 Closes rust-lang#20005 Closes rust-lang#20009 Closes rust-lang#20389
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Jan 2, 2015
Closes rust-lang#17732 Closes rust-lang#18819 Closes rust-lang#19479 Closes rust-lang#19631 Closes rust-lang#19632 Closes rust-lang#19850 Closes rust-lang#19883 Closes rust-lang#20005 Closes rust-lang#20009 Closes rust-lang#20389 --- cc @nikomatsakis @sfackler
lnicola
pushed a commit
to lnicola/rust
that referenced
this issue
Jul 28, 2024
minor: sync from downstream
RalfJung
pushed a commit
to RalfJung/rust
that referenced
this issue
Aug 1, 2024
minor: sync from downstream
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-associated-items
Area: Associated items (types, constants & functions)
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Possibly a dup of #17359. Minimal example to reproduce in play.rust-lang.org as of 10/2/2013:
The text was updated successfully, but these errors were encountered: