Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleProperty.kt
2016-11-28 16:33:58 +03:00

9 lines
222 B
Kotlin
Vendored

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