blob: 2697e2751b70ce8d4ccc9854d31170d1c3f45a23 [file] [log] [blame]
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() {
}
}