blob: 22218959d2a8d425e54a3d70d7713522f2808713 [file] [log] [blame]
// 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
}