Files
kotlin/compiler/testData/codegen/dataClasses/hashcode/alreadyDeclared.kt
2012-09-26 12:32:16 +04:00

7 lines
131 B
Kotlin

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