-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 with associated types defaults #23073
Comments
Thanks! Both of the ICE cases are caused by changes I've made which assume every type (including those defaults) is instantiated by @nikomatsakis @japaric Are there any immediate plans for implementing those defaults? |
Variant of case 3: trait What { type T; }
trait Bar {
type Foo;
type FooT = Self::Foo::T;
} The difference is that this code is invalid. |
On Thu, Mar 05, 2015 at 08:07:50AM -0800, Eduard Burtescu wrote:
I've been meaning to implement them for a while now, just keep getting distracted... |
These were fixed when defaults were implemented. |
Associated types defaults ( #19476 ) cause at least two different ICE with rustc 1.0.0-nightly (b4c965e 2015-03-02) (built 2015-03-03)
Case 1 : building :
Case 2 : ICE
backtrace :
Case 3 : ICE
backtrace :
The text was updated successfully, but these errors were encountered: