Files
kotlin/compiler/testData/diagnostics/tests/java8Overrides/singleRelevantDefault.fir.kt

9 lines
120 B
Kotlin
Vendored

interface ITop {
fun foo() {}
}
interface ILeft : ITop
interface IRight : ITop
interface IDerived : ILeft, IRight