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