Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideFromFunctionPosition.kt.after
T
2014-10-14 00:39:23 +04:00

27 lines
404 B
Plaintext

trait Some {
fun foo()
}
class Other {
fun test() {
val a = 1
}
override fun equals(other: Any?): Boolean {
<selection><caret>return super<Any>.equals(other)</selection>
}
override fun hashCode(): Int {
return super<Any>.hashCode()
}
override fun toString(): String {
return super<Any>.toString()
}
fun otherTest() {
}
}