Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
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
}