summaryrefslogtreecommitdiff
path: root/test/files/run/t2308a.scala
blob: abb568064aa4a4173e4e66e6af5a489d497c08e9 (plain) (blame)
1
2
3
4
5
6
7
object Test {
  trait T[M[_]]
  
  def f1 = classOf[T[X] forSome { type X[_] } ]
  
  def main(args: Array[String]): Unit = println(f1)
}