blob: 2f63949d29ae3744905990f635e35ed31cda9914 [file] [log] [blame]
// 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()
}
}