Files
kotlin-fork/js/js.translator/testFiles/patternMatching/cases/whenAsExpression.kt
T
2012-02-27 21:55:58 +04:00

12 lines
127 B
Kotlin

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