mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
9 lines
222 B
Kotlin
Vendored
9 lines
222 B
Kotlin
Vendored
// Enable when callable references to builtin members are supported.
|
|
// IGNORE_BACKEND: JS
|
|
|
|
fun box(): String {
|
|
val f = "kotlin"::length
|
|
val result = f.get()
|
|
return if (result == 6) "OK" else "Fail: $result"
|
|
}
|