Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/collectionStubs/inheritingFromAbstractCollections.kt
T
Dmitry Petrov e10d8e51b6 JVM_IR more precise superclass stub filtering
Filter out abstract members of superclasses when generating collection
stubs.

KT-43207
2020-11-10 16:41:45 +03:00

15 lines
333 B
Kotlin
Vendored

// WITH_RUNTIME
abstract class AIterD : AbstractIterator<Double>()
abstract class ACollD : AbstractCollection<Double>()
abstract class AMCollD : AbstractMutableCollection<Double>()
abstract class ASetD : AbstractSet<Double>()
abstract class AMSetD : AbstractMutableSet<Double>()
abstract class AListD : AbstractList<Double>()