blob: 48085b8b837bb761d190d25afa355230fedc0498 [file] [log] [blame]
// p.A
package p
class A(val y: Int) {
override fun equals(other: Any?): Boolean {
return super.equals(other)
}
override fun hashCode(): Int {
return super.hashCode()
}
override fun toString(): String {
return super.toString()
}
fun component1() = y
}
// FIR_COMPARISON