-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Implicit modifier crashes the typer #2514
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
Labels
Comments
The failing code can be minimized to object Foo {
val f = (implicit x: Int) => x
} or object Foo {
((implicit x: Int) => x): (implicit Int => Int)
} |
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
May 26, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
May 26, 2017
@nicolasstucki still crashes |
@biboudis the fix is available in the a PR |
DarkDimius
added a commit
that referenced
this issue
Jun 14, 2017
Fix #2514: Survive non-sensical trees in Typer
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following snippet fails to typecheck, but also crashes the typer:
Results:
The text was updated successfully, but these errors were encountered: