Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleFunction.kt
2019-11-19 11:00:09 +03:00

6 lines
106 B
Kotlin
Vendored

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