-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Labels
Description
Chain of two given..with
dependencies fail to fetch dependent type. If IntCandidate
in the example below uses transparent inline given
then there is no error.
Compiler version
v3.1.0-RC2
Minimized code
scastie:
https://scastie.scala-lang.org/k7wmGYQOQtCteA4IrDmJ7g
trait IntWidth {type Out}
given IntWidth with {type Out = 155}
trait IntCandidate {type Out}
given (using w: IntWidth): IntCandidate with {type Out = w.Out}
val x = summon[IntCandidate]
val xx = summon[x.Out =:= 155]
Output
Cannot prove that x.Out =:= (155 : Int).
Expectation
No error.
Adam-Vandervorst