Files
kotlin/compiler/testData/codegen/boxWithStdlib/dataClasses/hashcode/long.kt
2013-02-11 02:01:40 +04:00

8 lines
183 B
Kotlin

data class A(val a: Long)
fun box() : String {
val v1 = A(-10.toLong()).hashCode()
val v2 = (-10.toLong() as Long?)!!.hashCode()
return if( v1 == v2 ) "OK" else "$v1 $v2"
}