Files
kotlin/compiler/testData/codegen/box/callableReference/property/extensionToArray.kt
2019-11-19 11:00:09 +03:00

8 lines
187 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
val Array<String>.firstElement: String get() = get(0)
fun box(): String {
val p = Array<String>::firstElement
return p.get(arrayOf("OK", "Fail"))
}