29 lines
511 B
Kotlin
29 lines
511 B
Kotlin
package codegen.localClass.objectExpressionInInitializer
|
|
|
|
import kotlin.test.*
|
|
|
|
abstract class Father {
|
|
abstract inner class InClass {
|
|
abstract fun work(): String
|
|
}
|
|
}
|
|
|
|
class Child : Father() {
|
|
val ChildInClass : InClass
|
|
|
|
init {
|
|
ChildInClass = object : Father.InClass() {
|
|
override fun work(): String {
|
|
return "OK"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Child().ChildInClass.work()
|
|
}
|
|
|
|
@Test fun runTest() {
|
|
println(box())
|
|
} |