Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleProperty.kt
2016-11-09 21:41:12 +03:00

9 lines
226 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
fun box(): String {
val f = "kotlin"::length
val result = f.get()
return if (result == 6) "OK" else "Fail: $result"
}