2a36a8acac
#KT-39151 Fixed
11 lines
241 B
Kotlin
Vendored
11 lines
241 B
Kotlin
Vendored
// PROBLEM: none
|
|
// RUNTIME_WITH_FULL_JDK
|
|
import java.util.concurrent.ConcurrentHashMap
|
|
|
|
fun test(map: ConcurrentHashMap<Int, String>) {
|
|
map.<caret>forEach(1) { key, value ->
|
|
foo(key, value)
|
|
}
|
|
}
|
|
|
|
fun foo(i: Int, s: String) {} |