7 lines
156 B
Kotlin
7 lines
156 B
Kotlin
//IS_APPLICABLE: FALSE
|
|
//ERROR: Unresolved reference: withIndices
|
|
fun b(c: List<String>) {
|
|
for ((<caret>indexVariable, d) in c.withIndices()) {
|
|
|
|
}
|
|
} |