-
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 when using associated types in gfx-rs #18048
Labels
A-associated-items
Area: Associated items (types, constants & functions)
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Comments
emberian
added
the
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
label
Oct 15, 2014
Smaller reproduction with // bar.rs
#![crate_type="lib"]
#![feature(associated_types)]
pub trait Bar {
type T;
} // foo.rs
#![crate_type="lib"]
#![feature(associated_types)]
extern crate bar;
pub use bar::Bar; Then trying to compile |
alexcrichton
added
the
A-associated-items
Area: Associated items (types, constants & functions)
label
Nov 20, 2014
This was referenced Nov 21, 2014
I've got a fix for this narrow issue, but when I broaden the test just a smidgen I encounter a few more issues. Patches forthcoming. |
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this issue
Dec 29, 2014
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this issue
Dec 29, 2014
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this issue
Dec 30, 2014
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this issue
Dec 30, 2014
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) ❄️
Steps to repro:
Output:
The text was updated successfully, but these errors were encountered: