Files
kotlin/compiler/testData/codegen/boxWithStdlib/callableReference/property/extensionToArray.kt
2015-09-19 04:32:56 +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"))
}