summaryrefslogtreecommitdiff
path: root/test/files/run/t6113.scala
blob: 321cae86a3d0e5bce086e05e320a47a3eb759364 (plain) (blame)
1
2
3
4
5
6
trait Foo[C[_]]

object Test extends App {
  import scala.reflect.runtime.universe._
  println(typeOf[Foo[({type l[X] = (Int, X)})#l]])
}