Files
kotlin-fork/idea/testData/intentions/replaceUnderscoreWithParameterName/map.kt.after
T

7 lines
86 B
Plaintext
Vendored

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