Files
kotlin/compiler/testData/codegen/box/dataClasses/hashCode/boolean.kt

8 lines
162 B
Kotlin
Vendored

data class A(val a: Boolean)
fun box() : String {
if (A(true).hashCode() != 1) return "fail1"
if (A(false).hashCode() !=0) return "fail2"
return "OK"
}