672b5ba0d7
We drop Kotlin function 'remove' or 'getOrDefault' from JvmMappedScope, if it has platform-dependent annotation, and the bound Java class scope does not contain a function with the same signature. #KT-57268 Fixed
10 lines
355 B
Kotlin
Vendored
10 lines
355 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
// IGNORE_BACKEND_K2: JVM_IR
|
|
// FIR status: KT-57300 K2: subclass of MutableCollection with primitive element type has methods with boxed type
|
|
// (`containsValue(Ljava/lang/Double;)Z` instead of `containsValue(D)Z`)
|
|
|
|
abstract class AMapSD : AbstractMap<String, Double>()
|
|
|
|
abstract class AMMapSD : AbstractMutableMap<String, Double>()
|