1a818970c3
#KT-17278 Fixed
8 lines
154 B
Kotlin
Vendored
8 lines
154 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
fun test(map: Map<Int, String>) {
|
|
map.<caret>forEach {
|
|
foo(it)
|
|
}
|
|
}
|
|
fun foo(it: Map.Entry<Int, String>) {} |