25 lines
442 B
Kotlin
25 lines
442 B
Kotlin
package codegen.localClass.objectExpressionInProperty
|
|
|
|
import kotlin.test.*
|
|
|
|
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()
|
|
}
|
|
|
|
@Test fun runTest() {
|
|
println(box())
|
|
} |