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

27 lines
451 B
Plaintext
Vendored

// FIR_IDENTICAL
interface I {
fun z()
}
class C : A(), I {
override fun equals(other: Any?): Boolean {
<selection><caret>return super.equals(other)</selection>
}
override fun hashCode(): Int {
return super.hashCode()
}
override fun toString(): String {
return super.toString()
}
override fun x() {
super.x()
}
override fun z() {
TODO("Not yet implemented")
}
}