3b841dcb98
This fixes a bunch of missing overridden symbols in IR. This is also required for fixing KT-59921 in the following commit where we need to keep all overridden symbols of intersection overrides so that we can enhance them properly. #KT-57300 Fixed #KT-57299 Fixed #KT-59921 #KT-57300 #KT-62788 #KT-64271 #KT-64382
17 lines
412 B
Kotlin
Vendored
17 lines
412 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// JVM_TARGET: 1.8
|
|
// IGNORE_BACKEND: ANDROID
|
|
// ^ NSME: java.util.AbstractMap.remove
|
|
// FULL_JDK
|
|
// JVM_ABI_K1_K2_DIFF: KT-65095
|
|
|
|
class Test : Map<String, String>, java.util.AbstractMap<String, String>() {
|
|
override val entries: MutableSet<MutableMap.MutableEntry<String, String>>
|
|
get() = throw Exception()
|
|
}
|
|
|
|
fun box(): String {
|
|
Test().remove(null, "")
|
|
return "OK"
|
|
}
|