Clean & fix tests in "replace manual range with indices / iteration"

Related to KT-14344
This commit is contained in:
Mikhail Glukhikh
2019-05-21 13:11:21 +03:00
parent 7c46338181
commit 0cf318918c
14 changed files with 10 additions and 10 deletions
@@ -0,0 +1,8 @@
// WITH_RUNTIME
// PROBLEM: none
fun test(args: Array<Int>) {
val x = arrayOf<String>()
for (index in ar<caret>gs) {
val out = x[index]
}
}