Files
kotlin-fork/backend.native/tests/external/codegen/blackbox/callableReference/bound/simpleProperty.kt
T

9 lines
230 B
Kotlin

// Enable when callable references to builtin members are supported.
// IGNORE_BACKEND: JS, NATIVE
fun box(): String {
val f = "kotlin"::length
val result = f.get()
return if (result == 6) "OK" else "Fail: $result"
}