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

12 lines
120 B
Kotlin

package foo
fun box(): Boolean {
return (when(1) {
2 -> 3
1 -> 1
else -> 5
} == 1)
}