blob: 3f29f4ecb322d901d69be42f257d6fd71efcdc59 [file]
data class A(val a: IntArray) {
<caret>override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as A
if (!a.contentEquals(other.a)) return false
return true
}
override fun hashCode(): Int {
return a.contentHashCode()
}
}