Files
kotlin-fork/compiler/testData/codegen/box/objects/initializationOrderConsts.kt
T
2021-10-04 14:34:56 +00:00

13 lines
156 B
Kotlin
Vendored

// IGNORE_BACKEND: JS
var result = "OK"
object A {
val x = "O${foo()}"
fun foo() = y
const val y = "K"
}
fun box(): String {
return A.x
}