Files
kotlin/compiler/testData/codegen/boxWithStdlib/callableReference/property/extensionToArray.kt

7 lines
155 B
Kotlin
Vendored

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