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

26 lines
383 B
Kotlin
Vendored

package foo
fun box(): String {
var c = when(3) {
3 -> 1
2 -> 100
else -> 100
} + when (2) {
1 -> 100
else -> 1
} + when (0) {
1 -> if (true) 100 else 100
0 -> if (false) {
100
}
else {
1
}
else -> 100
}
if (c != 3) return "fail"
return "OK"
}