DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / pos / t1560.scala
12345678910111213
object Test extends App { trait C[T] { def t: T } def b: Option[C[x] forSome { type x }] = null def c = b match { case Some(b) => b.t } }