Files
kotlin-fork/backend.native/tests/external/codegen/box/callableReference/bound/simpleFunction.kt
T
2017-03-13 15:31:46 +03:00

5 lines
76 B
Kotlin

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