7 lines
127 B
Kotlin
Vendored
7 lines
127 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun foo(map: Map<Int, Int>) {
|
|
for (entry<caret> in map.entries) {
|
|
val (key, value) = entry
|
|
}
|
|
} |