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

7 lines
110 B
Plaintext
Vendored

// WITH_RUNTIME
fun test(args: Array<String>) {
for (element in args) {
val out = element
}
}