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

7 lines
120 B
Plaintext
Vendored

// WITH_RUNTIME
fun test(args: Array<String>) {
for (index in args.indices) {
args[index] = "Hello"
}
}