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

7 lines
152 B
Plaintext
Vendored

// WITH_RUNTIME
fun test(map: Map<String, Int>) {
for ((key, value) in map) {
if (key == "my_name") println("My index is ${value}")
}
}