Files
kotlin-fork/idea/testData/intentions/useWithIndex/destructuringDeclaration.kt
T
2019-03-21 10:59:01 +03:00

8 lines
161 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(list: List<Pair<String, String>>) {
var index = 0
<caret>for ((s1, s2) in list) {
index++
}
}