1a818970c3
#KT-17278 Fixed
8 lines
155 B
Plaintext
Vendored
8 lines
155 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) {} |