Files
kotlin-fork/compiler/testData/diagnostics/tests/generics/innerClasses/innerSuperCall.kt
T
2016-01-26 13:53:45 +03:00

10 lines
240 B
Kotlin
Vendored

open class Super<T> {
inner open class Inner {
}
}
class Sub : Super<String>() {
// TODO: it would be nice to have a possibility to omit explicit type argument in supertype
inner class SubInner : Super<String>.Inner() {}
}