Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
70b97c5abe682fb7598fc5070d94c39256a0baa4
/
.
/
compiler
/
testData
/
codegen
/
box
/
objects
/
initializationOrderConsts.kt
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
}