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

6 lines
79 B
Plaintext
Vendored

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