mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
26 lines
506 B
Plaintext
Vendored
26 lines
506 B
Plaintext
Vendored
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 implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
}
|