Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
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
}