Files
kotlin-fork/js/js.translator/testData/box/expression/when/whenWithoutExpression.kt
T
2016-09-29 12:00:40 +03:00

6 lines
70 B
Kotlin
Vendored

package foo
fun box() = when {
1 > 3 -> "fail"
else -> "OK"
}