blob: 1c0bea8d97e5c8e1a887365d9a6303e6351864f6 [file] [log] [blame]
// FIR_IDENTICAL
open class A<T> {
}
interface I
class B : A<String>(), I {
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()
}
}