Files
kotlin-fork/idea/testData/intentions/loopToCallChain/forEachIndexed_nothingElse.kt.after
T
2016-08-16 17:38:12 +03:00

5 lines
170 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'forEachIndexed{}'"
fun foo(list: List<String>) {
list.forEachIndexed { index, s -> println(s.hashCode() * index) }
}