aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/nested2.scala
blob: 421ea6facf9511d500a60f015f7027ff4f2fc982 (plain) (blame)
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]
}