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
Implicit resolution fails via a type alias in 2.10.1-RC1 yet works fine in 2.10.0
The following shows the problem:
trait Higher[F[_]] trait Box[A] object Box { implicit def HigherBox = new Higher[Box] {} } object Foo { val box = implicitly[Higher[Box]] // compiles fine !!! type Bar[A] = Box[A] val bar = implicitly[Higher[Bar]] // <-- this doesn't compile in 2.10.1-RC1, but does in 2.10.0 !!! }
The text was updated successfully, but these errors were encountered:
Imported From: https://issues.scala-lang.org/browse/SI-7180?orig=1 Reporter: Jed Wesley-Smith (jedws) Affected Versions: 2.10.1-RC1
Sorry, something went wrong.
@gkossakowski said: Jason, assigning to you and rising it to blocker as it seems like source-incompatible regression in area you are familiar with.
@retronym said: scala/scala#2166
retronym
No branches or pull requests
Implicit resolution fails via a type alias in 2.10.1-RC1 yet works fine in 2.10.0
The following shows the problem:
The text was updated successfully, but these errors were encountered: