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

9 lines
149 B
Kotlin

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