Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3850.kt
T
2019-11-19 11:00:09 +03:00

8 lines
177 B
Kotlin
Vendored

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