Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/collectionStubs/collectionByDelegation3.kt
T
Mikhail Glukhikh 672b5ba0d7 K2/Java: implement platform-dependent function filtering in JvmMappedScope
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
2024-01-30 19:44:00 +00:00

22 lines
642 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-65323
class DIntIterator(d: Iterator<Int>) : Iterator<Int> by d
class DIntListIterator(d: ListIterator<Int>) : ListIterator<Int> by d
class DIntIterable(d: Iterable<Int>) : Iterable<Int> by d
class DIntCollection(d: Collection<Int>) : Collection<Int> by d
class DIntSet(d: Set<Int>) : Set<Int> by d
class DIntList(d: List<Int>) : List<Int> by d
class DIntMap(d: Map<Int, Double>) : Map<Int, Double> by d
class DIntMapEntry(d: Map.Entry<Int, Double>) : Map.Entry<Int, Double> by d
class DIntCollectionBySet(d: Set<Int>) : Collection<Int> by d
class DIntCollectionByList(d: List<Int>) : Collection<Int> by d