Files
kotlin-fork/compiler/testData/diagnostics/tests/override/clashesOnInheritance/kt65555.kt
T

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>