Files
kotlin/compiler/testData/codegen/box/callableReference/bound/simpleFunction.kt
2016-11-09 21:41:12 +03:00

8 lines
172 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
fun box(): String {
val f = "KOTLIN"::get
return "${f(1)}${f(0)}"
}