Files
kotlin-fork/idea/testData/intentions/iterationOverMap/KeyValueWithDestructuring.kt.after
T

6 lines
86 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo(map: Map<Int, Int>) {
for ((key, value) in map) {
}
}