bd3d5a9dbb
#KT-30341 Fixed
8 lines
161 B
Kotlin
Vendored
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++
|
|
}
|
|
} |