Files
kotlin-fork/compiler/testData/codegen/bytecodeText/hashCode/hashCode_1_6.kt
T
Alexander Udalov d022bb0248 Switch default JVM target to 1.8
#KT-29405 Fixed
2021-02-01 11:54:04 +01:00

19 lines
289 B
Kotlin
Vendored

// JVM_TARGET: 1.6
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"
}
// 9 \.hashCode
// 9 \.hashCode \(\)I