blob: 3a10209200a5379d5ed3df307d5a12ceefc8d386 [file]
var result = "OK"
object A {
val x = "O${foo()}"
fun foo() = y
const val y = "K"
}
fun box(): String {
return A.x
}