Files
kotlin-fork/translator/testFiles/patternMatching/cases/whenValue.kt
T
2011-11-17 18:39:40 +04:00

10 lines
125 B
Kotlin

namespace foo
fun box() : Boolean {
var a = 4
when(a) {
is 3 => a = 10;
is 4 => a = 20;
}
return (a == 20)
}