blob: 9b9b2e13347d1290c3f0101932a537821c0f2e8e [file]
open class X {
override fun equals(other: Any?) = super.equals(other)
override fun hashCode() = super.hashCode()
}
class A(val n: Int) : X() {<caret>
fun foo() {
}
}