Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleProperty.kt
2017-01-24 20:09:29 +03:00

6 lines
130 B
Kotlin
Vendored

fun box(): String {
val f = "kotlin"::length
val result = f.get()
return if (result == 6) "OK" else "Fail: $result"
}