Files
kotlin-fork/idea/testData/inspectionsLocal/javaMapForEach/java2.kt.after
T
2019-03-01 16:15:23 +03:00

8 lines
167 B
Plaintext
Vendored

// RUNTIME_WITH_FULL_JDK
fun test(hashMap: HashMap<Int, String>) {
hashMap.forEach { (key, value) ->
foo(key, value)
}
}
fun foo(i: Int, s: String) {}