Files
kotlin/compiler/testData/codegen/box/objects/objectInitialization_kt5523.kt
2018-08-24 15:49:13 +03:00

8 lines
89 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
object A {
val a = "OK"
val b = A.a
}
fun box() = A.b