93db78e7ac
#KT-31833 Fixed
10 lines
188 B
Kotlin
Vendored
10 lines
188 B
Kotlin
Vendored
// RUNTIME_WITH_FULL_JDK
|
|
fun test(map: Map<Int, String>) {
|
|
map.run {
|
|
<caret>forEach { key, value ->
|
|
foo(key, value)
|
|
}
|
|
}
|
|
}
|
|
|
|
fun foo(i: Int, s: String) {} |