Files
kotlin-fork/j2k/testData/fileOrElement/postProcessing/java8MapForEachWithFullJdk.kt
T
2019-03-01 16:15:23 +03:00

9 lines
200 B
Kotlin
Vendored

import java.util.HashMap
internal class Test {
fun test(map: HashMap<String, String>) {
map.forEach { (key, value) -> foo(key, value) }
}
fun foo(key: String, value: String) {}
}