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

10 lines
137 B
Kotlin
Vendored

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