Files
kotlin/compiler/testData/codegen/box/controlStructures/forInCharSequenceWithIndex/forInEmptyStringWithIndex.kt
2018-01-23 10:55:24 +03:00

8 lines
164 B
Kotlin
Vendored

// WITH_RUNTIME
fun box(): String {
for ((index, x) in "".withIndex()) {
return "Loop over empty String should not be executed"
}
return "OK"
}