Files
kotlin/idea/testData/codeInsight/overrideImplement/privateJavaMethod/foo/Impl.kt.after
2015-08-19 17:26:44 +03:00

26 lines
456 B
Plaintext
Vendored

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