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