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

7 lines
109 B
Kotlin

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