mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
9 lines
226 B
Kotlin
Vendored
9 lines
226 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS
|
|
|
|
fun box(): String {
|
|
val f = "kotlin"::length
|
|
val result = f.get()
|
|
return if (result == 6) "OK" else "Fail: $result"
|
|
}
|