Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleProperty.kt
2019-11-19 11:00:09 +03:00

7 lines
160 B
Kotlin
Vendored

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