You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is Dotty's equivalent of scala/bug#11591. Here, rather than crashing the compiler, it compiles incorrectly yielding a null. The correct behaviour is to report an implicit search failure.
objectTest {
classAclassBimplicitdefmkA(implicitb: =>B):A=???implicitdefmkB(implicita: A, i: Int):B=???
implicitly[A]
}
PR incoming ...
The text was updated successfully, but these errors were encountered:
If any RHS of a recursive implicit dictionary (after pruning) is an
EmptyTree, then this indicates that implicit search failed and we should
report the overall search as a failure.
Fixesscala#6796
This is Dotty's equivalent of scala/bug#11591. Here, rather than crashing the compiler, it compiles incorrectly yielding a null. The correct behaviour is to report an implicit search failure.
PR incoming ...
The text was updated successfully, but these errors were encountered: