7 lines
111 B
Plaintext
Vendored
7 lines
111 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun a() {
|
|
val b = listOf(1,2,3,4,5)
|
|
for ((index, c) in b.withIndex()) {<caret>
|
|
|
|
}
|
|
} |