mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
7 lines
165 B
Kotlin
Vendored
7 lines
165 B
Kotlin
Vendored
// Enable when callable references to builtin members is supported
|
|
// IGNORE_BACKEND: JS
|
|
fun box(): String {
|
|
val f = "KOTLIN"::get
|
|
return "${f(1)}${f(0)}"
|
|
}
|