Files
kotlin/idea/testData/codeInsight/overrideImplement/overrideFromFunctionPosition.kt.after
2015-05-13 16:13:13 +02:00

27 lines
393 B
Plaintext
Vendored

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