Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt3850.kt
T
2015-07-10 15:05:07 +03:00

6 lines
138 B
Kotlin
Vendored

class One {
val a1 = arrayOf(
object { val fy = "text"}
)}
fun box() = if (One().a1[0].fy == "text") "OK" else "fail"