Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleProperty.kt
2018-06-28 12:26:41 +02:00

8 lines
181 B
Kotlin
Vendored

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