Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleFunction.kt
2018-08-09 14:22:50 +03:00

6 lines
101 B
Kotlin
Vendored

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