Files
kotlin-fork/compiler/testData/codegen/regressions/kt873.kt
T
2012-01-04 14:29:21 +02:00

11 lines
174 B
Kotlin

fun box() : String {
val fps : Double = 1.dbl
var mspf : Long
{
if ((fps.int == 0))
mspf = 0
else
mspf = (((1000.0 / fps)).lng)
}
return "OK"
}