Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/simpleProperty.kt
T
2021-09-27 17:07:39 +03:00

8 lines
204 B
Kotlin
Vendored

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