代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/305277/3778589
scala nested2.scala
class C[A] {
class D[B] {
}
}
object Test {
val x = new C[String]
val y: C[String]#D[int] = new x.D[int]
}