// PROBLEM: none // RUNTIME_WITH_FULL_JDK fun test(map: Map) { val mapOfPairs = mapOf, Int>() mapOfPairs.forEach { (first, second), value -> println(first) println(second) println(value) } }