Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
objects
/
initializationOrderConsts.kt
blob: 22218959d2a8d425e54a3d70d7713522f2808713 [
file
]
// 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
}