7 lines
173 B
Kotlin
7 lines
173 B
Kotlin
// Enable when callable references to builtin members is supported
|
|
// IGNORE_BACKEND: JS, NATIVE
|
|
fun box(): String {
|
|
val f = "KOTLIN"::get
|
|
return "${f(1)}${f(0)}"
|
|
}
|