Files
kotlin-fork/compiler/testData/codegen/java8/box/jvm8/kt16588.kt
T
2017-03-03 11:21:42 +01:00

13 lines
163 B
Kotlin
Vendored

// JVM_TARGET: 1.8
fun number(doLong: Boolean): Number = when {
doLong -> 1.toLong()
else -> 0
}
fun box(): String {
number(true)
return "OK"
}