Files
kotlin-fork/idea/resources/intentionDescriptions/DestructureIntention/before.kt.template
T

5 lines
123 B
Plaintext

val map = hashMapOf(1 to 2)
for (<spot>entry</spot> in map.entries) {
val key = entry.key
val value = entry.value
}