Files
kotlin-fork/idea/testData/inspectionsLocal/replaceManualRangeWithIndicesCalls/forNotTarget.kt
T
2019-05-21 13:34:29 +03:00

9 lines
160 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
fun test(args: Array<Int>) {
val x = arrayOf<String>()
for (index in ar<caret>gs) {
val out = x[index]
}
}