// TARGET_BACKEND: JVM // FULL_JDK // ISSUE: KT-65555 // JVM_ABI_K1_K2_DIFF: KT-63828 interface MyCollection : Collection interface MyList : MyCollection, List interface MyMutableList : MyList, MutableList class A(val delegate: ArrayList) : MyMutableList, MutableList by delegate fun box(): String { val delegate = ArrayList() delegate.add("OK") return A(delegate).get(0) }