We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
trait Foo { fn foo() -> uint {0} } fn main() { Foo::foo(); }
ICEs during trans. This is very unfortunate, since it shouldn't pass typechecking. The problem is that the function isn't being given the right type.
This is basically a result of our type tables and method handling being a complete mess. I have an easy fix, but I'm not thrilled about it.
The text was updated successfully, but these errors were encountered:
Part of #2794.
Sorry, something went wrong.
8a9cdda
No branches or pull requests
ICEs during trans. This is very unfortunate, since it shouldn't pass typechecking. The problem is that the function isn't being given the right type.
This is basically a result of our type tables and method handling being a complete mess. I have an easy fix, but I'm not thrilled about it.
The text was updated successfully, but these errors were encountered: