Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/collectionStubs/collectionByDelegation.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
658 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-65323
class DGenericIterator<T>(d: Iterator<T>) : Iterator<T> by d
class DGenericListIterator<T>(d: ListIterator<T>) : ListIterator<T> by d
class DGenericIterable<T>(d: Iterable<T>) : Iterable<T> by d
class DGenericCollection<T>(d: Collection<T>) : Collection<T> by d
class DGenericSet<T>(d: Set<T>) : Set<T> by d
class DGenericList<T>(d: List<T>) : List<T> by d
class DGenericMap<K, V>(d: Map<K, V>) : Map<K, V> by d
class DGenericMapEntry<K, V>(d: Map.Entry<K, V>) : Map.Entry<K, V> by d
class DGenericCollectionBySet<T>(d: Set<T>) : Collection<T> by d
class DGenericCollectionByList<T>(d: List<T>) : Collection<T> by d