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

13 lines
167 B
Kotlin
Vendored

package foo
fun box(): String {
val success = (when(1) {
2 -> 3
1 -> 1
else -> 5
} == 1)
return if (success) "OK" else "fail"
}