Files
kotlin-fork/compiler/testData/codegen/box/superConstructorCall/kt11833_1.kt
T

17 lines
321 B
Kotlin
Vendored

abstract class Father {
abstract inner class InClass {
abstract fun work(): String
}
}
class Child : Father() {
val ChildInClass = object : Father.InClass() {
override fun work(): String {
return "OK"
}
}
}
fun box(): String {
return Child().ChildInClass.work()
}