Files
kotlin-fork/backend.native/tests/codegen/localClass/objectExpressionInProperty.kt
T
2017-10-20 18:25:05 +03:00

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())
}