Files
kotlin-fork/compiler/testData/diagnostics/tests/java8Overrides/defaultVsAbstract.fir.kt
T
2021-04-30 17:59:38 +03:00

13 lines
226 B
Kotlin
Vendored

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