7 lines
109 B
Kotlin
Vendored
7 lines
109 B
Kotlin
Vendored
object Test {
|
|
fun ok() = "OK"
|
|
val x = run { Test.ok() }
|
|
fun test() = x
|
|
}
|
|
|
|
fun box() = Test.test() |