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

7 lines
91 B
Kotlin
Vendored

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