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

7 lines
127 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(map: Map<Int, Int>) {
for (entry<caret> in map.entries) {
val (key, value) = entry
}
}