Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/extensionToArray.kt
T
2021-09-27 17:07:39 +03:00

7 lines
157 B
Kotlin
Vendored

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