Files
kotlin/compiler/testData/codegen/box/dataClasses/hashCode/alreadyDeclared.kt
2019-11-19 11:00:09 +03:00

8 lines
170 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
data class A(val x: Int) {
override fun hashCode(): Int = -3
}
fun box(): String {
return if (A(0).hashCode() == -3) "OK" else "fail"
}