Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/simpleProperty.kt
T
2021-10-02 06:14:35 +00: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"
}