Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/abstractAndNonAbstractInheritedFromInterface.kt
T
2021-05-07 00:40:41 +03:00

12 lines
137 B
Kotlin
Vendored

// FIR_IDENTICAL
interface T {
fun getFoo(): String = ""
}
interface U {
fun getFoo(): String
}
class C1 : T, U {
<caret>
}