Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleFunction.kt

5 lines
76 B
Kotlin
Vendored

fun box(): String {
val f = "KOTLIN"::get
return "${f(1)}${f(0)}"
}