1a818970c3
#KT-17278 Fixed
8 lines
172 B
Kotlin
Vendored
8 lines
172 B
Kotlin
Vendored
// RUNTIME_WITH_FULL_JDK
|
|
fun test(hashMap: HashMap<Int, String>) {
|
|
hashMap.<caret>forEach { key, value ->
|
|
foo(key, value)
|
|
}
|
|
}
|
|
|
|
fun foo(i: Int, s: String) {} |