mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
7 lines
160 B
Kotlin
Vendored
7 lines
160 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
fun box(): String {
|
|
val f = "kotlin"::length
|
|
val result = f.get()
|
|
return if (result == 6) "OK" else "Fail: $result"
|
|
}
|