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

7 lines
120 B
Kotlin
Vendored

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