Files
kotlin/compiler/testData/codegen/box/statics/anonymousInitializerIObject.kt
2016-03-09 10:25:38 +03:00

11 lines
113 B
Kotlin
Vendored

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