Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/simpleFunction.kt
T
2021-09-20 19:08:22 +03:00

6 lines
77 B
Kotlin
Vendored

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