Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideFromClassName.kt.after
T
2014-12-18 15:41:34 +03:00

26 lines
388 B
Plaintext

trait Some {
fun foo()
}
class Other {
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()
}
fun test() {
val a = 1
}
fun otherTest() {
}
}