Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/abstractAndNonAbstractInheritedFromInterface.kt
T

11 lines
120 B
Kotlin
Vendored

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