Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
statics
/
anonymousInitializerIObject.kt
blob: 72aa88ec05bcb31d88f05caabd70baf8fb779d97 [
file
]
object
Foo
{
val bar
:
String
init
{
bar
=
"OK"
}
}
fun box
():
String
{
return
Foo
.
bar
}