Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3850.kt
T
2018-09-18 14:36:20 +03:00

7 lines
147 B
Kotlin
Vendored

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