mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
9 lines
149 B
Kotlin
Vendored
9 lines
149 B
Kotlin
Vendored
class Test {
|
|
companion object {
|
|
fun ok() = "OK"
|
|
val x = run { Test.ok() }
|
|
fun test() = x
|
|
}
|
|
}
|
|
|
|
fun box() = Test.test() |