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

9 lines
120 B
Kotlin
Vendored

abstract class ALeft {
abstract fun foo()
}
interface IRight {
fun foo() {}
}
class CDerived : ALeft(), IRight