| // 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 |