Files
kotlin-fork/backend.native/tests/external/codegen/box/statics/anonymousInitializerIObject.kt
T
2017-03-13 15:31:46 +03:00

11 lines
113 B
Kotlin

object Foo {
val bar: String
init {
bar = "OK"
}
}
fun box(): String {
return Foo.bar
}