Files
kotlin-fork/js/js.translator/testData/expression/when/cases/whenWithoutExpression.kt
T
2014-08-22 02:16:53 +04:00

6 lines
69 B
Kotlin

package foo
fun box() = when {
1 > 3 -> false
else -> true
}