Files
kotlin/idea/testData/codeInsight/overrideImplement/abstractAndNonAbstractInheritedFromInterface.kt.after

13 lines
288 B
Plaintext
Vendored

interface T {
fun getFoo(): String = ""
}
interface U {
fun getFoo(): String
}
class C1 : T, U {
override fun getFoo(): String {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
}