We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This is a more general case than #830 which was fixed in #843
object C { val a: Int = 1 val b: Int = 2 val c: Int = 2 trait X[T] implicit def u[A, B]: X[A | B] = new X[A | B] {} def y[T](implicit x: X[T]): T = ??? val x: a.type & b.type | b.type & c.type = y }