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