Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleFunction.kt
Roman Artemev fb499def59 Update tests
2018-10-25 15:49:21 +03:00

5 lines
76 B
Kotlin
Vendored

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