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