879cdd5952
#KT-65555 Fixed
8 lines
207 B
Kotlin
Vendored
8 lines
207 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// FULL_JDK
|
|
// WITH_STDLIB
|
|
// ISSUE: KT-65555
|
|
|
|
interface MyCollection<E> : Collection<E>
|
|
interface MyList<E> : MyCollection<E>, List<E>
|
|
interface MyMutableList<E> : MyList<E>, MutableList<E> |