afc680d5c9
#KT-34511 Fixed
10 lines
261 B
Kotlin
Vendored
10 lines
261 B
Kotlin
Vendored
// PROBLEM: none
|
|
// RUNTIME_WITH_FULL_JDK
|
|
fun test(map: Map<Int, String>) {
|
|
val mapOfPairs = mapOf<Pair<Int, Int>, Int>()
|
|
mapOfPairs.<caret>forEach { (first, second), value ->
|
|
println(first)
|
|
println(second)
|
|
println(value)
|
|
}
|
|
} |