-
Notifications
You must be signed in to change notification settings - Fork 13k
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: assertion failed: obligations.is_empty() #41298
Comments
Travis built successfully using rustc 1.18.0-nightly (c58c928 2017-04-11) https://travis-ci.org/gluon-lang/gluon/jobs/221228481 |
#40570 looks like a likely cause for this regression and @nikomatsakis mentioned being unable to create a test case for #41044. I guess there might be such a test case somewhere in gluon_vm? Not going to have time to attempt a test case extraction at the moment however. |
@Marwes thanks for the bug report. I'll take a look and see what I see! |
triage: P-high |
Minimal reproduction: struct Function<T, F> { t: T, f: F }
impl<T, R> Function<T, fn() -> R> { fn foo() { } }
impl<T, R> Function<T, fn() -> R> { fn bar() { } }
fn main() { } |
This was fixed by #41377, I believe. |
@Marwes please let me know if you find otherwise :) |
@nikomatsakis It's working again now! Thanks! |
Getting an ICE when compiling
gluon_vm
after upgrading my nightly rustc version.The text was updated successfully, but these errors were encountered: