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

7 lines
165 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(list: List<String>) {
<caret>for ((index, s) in list.withIndex()) {
println(s.hashCode() * index)
}
}