JVM_IR fix override equivalence check for collection stub generation
KT-42043 KT-42033
This commit is contained in:
@@ -8,7 +8,7 @@ open class Content() {
|
||||
|
||||
interface ContentBox<T : Content> : List<T>
|
||||
|
||||
object Impl : ContentBox<Content> , AbstractList<Content>() {
|
||||
object Impl : ContentBox<Content>, AbstractList<Content>() {
|
||||
override fun get(index: Int) = Content()
|
||||
|
||||
override val size: Int
|
||||
|
||||
Reference in New Issue
Block a user