Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
optimizations
/
hashCode.kt
blob: b35ea920a159abf85ecda23877b4860aa2c2d266 [
file
] [
log
] [
blame
]
// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
fun box
():
String
{
true
.
hashCode
()
1.toByte
().
hashCode
()
1.toChar
().
hashCode
()
1.toShort
().
hashCode
()
1.hashCode
()
1L
.
hashCode
()
1.0F
.
hashCode
()
1.0
.
hashCode
()
""
.
hashCode
()
return
"OK"
}