mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
189 B
Kotlin
Vendored
9 lines
189 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
for ((index, x) in "".withIndex()) {
|
|
return "Loop over empty String should not be executed"
|
|
}
|
|
return "OK"
|
|
} |