Files
kotlin-fork/compiler/testData/codegen/regressions/kt2794.kt
T

6 lines
214 B
Kotlin

fun box () : String {
val b = 4.toByte()
val s = 5.toShort()
val c: Char = 'A'
return if( "$b" == "4" && " $b" == " 4" && "$s" == "5" && " $s" == " 5" && "$c" == "A" && " $c" == " A") "OK" else "fail"
}