Files
kotlin/compiler/testData/codegen/boxWithStdlib/dataClasses/hashcode/short.kt
2013-12-23 13:46:00 +04:00

8 lines
185 B
Kotlin
Vendored

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