Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/simpleProperty.kt
T
Roman Artemev fb499def59 Update tests
2018-10-25 15:49:21 +03:00

7 lines
156 B
Kotlin
Vendored

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