// FULL_JDK // FILE: MyMap.java public abstract class MyMap implements java.util.Map {} // FILE: test.kt fun test(map: MyMap) { val result = map.getOrPut("key") { "value" } // Cannot be resolved without early J2K mapping // In contrast, should be taken from JDK val otherResult = map.getOrDefault("key", "value") val anotherResult = map.replace("key", "value") // Java forEach map.forEach { key, value -> println("$key: $value") key.length value.length } // Kotlin forEach map.forEach { (key, value) -> println("$key: $value") key.length value.length } } fun test(map: MutableMap) { val result = map.getOrPut("key") { "value" } // Cannot be resolved without early J2K mapping // In contrast, should be taken from JDK val otherResult = map.getOrDefault("key", "value") val anotherResult = map.replace("key", "value") // Java forEach map.forEach { key, value -> println("$key: $value") key.length value.length } // Kotlin forEach map.forEach { (key, value) -> println("$key: $value") key.length value.length } }