summaryrefslogblamecommitdiff
path: root/test/files/pos/nested2.scala
blob: 302688a0ef0534220e34a2e4c24a40841d95436b (plain) (tree)
1
2
3
4
5
6
7
8
9








                                        
class C[A] {
  class D[B] {
  }
}

object Test {
  val x = new C[String]
  val y: C[String]#D[int] = new x.D[int]
}