DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / pos / t5968.scala
12345678
object X { def f(e: Either[Int, X.type]) = e match { case Left(i) => i case Right(X) => 0 // SI-5986 spurious exhaustivity warning here } }