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

13 lines
181 B
Kotlin
Vendored

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