Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleFunction.kt
2018-06-28 12:26:41 +02:00

7 lines
127 B
Kotlin
Vendored

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