Files
kotlin-fork/compiler/testData/diagnostics/tests/java8Overrides/abstractVsAbstract.kt
T

14 lines
233 B
Kotlin
Vendored

// FIR_IDENTICAL
interface ILeft {
fun foo()
}
interface IRight {
fun foo()
}
interface IDerived : ILeft, IRight
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>class CDerived<!> : ILeft, IRight
abstract class ADerived : ILeft, IRight