Files
kotlin-fork/js/js.translator/testData/patternMatching/cases/whenWithoutExpression.kt
T
2014-03-11 20:04:00 +04:00

6 lines
69 B
Kotlin

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