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
This minimized case class:
case class W[T](seq: Option[Option[T]] = Option.empty)
Stops the compilation with the following exception:
Exception in thread "main" java.lang.Error: internal error: type of right-hand side Option[A] is not fully defined, pos = <58..98>
(full stack trace)
The text was updated successfully, but these errors were encountered:
Fix scala#1590: Eliminate wildcards when approximating a type
a45a3e5
Fixes scala#1590. Type variables should never be instantiated to types containing wildcards.
Merge pull request #1592 from dotty-staging/fix-#1590
0fdd4e3
Fix #1590: Eliminate wildcards when approximating a type
odersky
No branches or pull requests
This minimized case class:
Stops the compilation with the following exception:
(full stack trace)
The text was updated successfully, but these errors were encountered: