Files
kotlin-fork/backend.native/tests/external/codegen/box/objects/selfReferenceToInterfaceCompanionObjectInInlineLambdaInConstructorBody.kt
T
2017-11-16 17:21:48 +03:00

9 lines
153 B
Kotlin

interface Test {
companion object {
fun ok() = "OK"
val x = run { Test.ok() }
fun test() = x
}
}
fun box() = Test.test()