Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
statics
/
anonymousInitializerInClassObject.kt
blob: 3b3559b2895c9672d838352390f8cb4f9c54c769 [
file
]
class
Foo
{
companion
object
{
val bar
:
String
init
{
bar
=
"OK"
}
}
}
fun box
():
String
{
return
Foo
.
bar
}