Files
kotlin-fork/compiler/testData/codegen/regressions/kt2269.kt
T
2012-08-04 08:55:38 +03:00

13 lines
210 B
Kotlin

fun box() : String {
230?.toByte()?.hashCode()
9.hashCode()
if(230.equals(9.toByte())) {
return "fail"
}
if(230 == 9.toByte().toInt()) {
return "fail"
}
return "OK"
}