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
15 lines
370 B
Kotlin
Vendored
15 lines
370 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// WORKS_WHEN_VALUE_CLASS
|
|
// LANGUAGE: +ValueClasses
|
|
// JVM_ABI_K1_K2_DIFF: KT-63828
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class Wrapper(val id: Int)
|
|
|
|
class DMap(private val map: Map<Wrapper, String>) :
|
|
Map<Wrapper, String> by map
|
|
|
|
fun box(): String {
|
|
val dmap = DMap(mutableMapOf(Wrapper(42) to "OK"))
|
|
return dmap[Wrapper(42)] ?: "Fail"
|
|
} |