Files
kotlin-fork/js/js.translator/testData/box/expression/function/whenFunction.kt
T
2018-04-19 13:17:28 +03:00

13 lines
279 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// EXPECTED_REACHABLE_NODES: 1109
package foo
fun foo(a: Int): Int = when {
a == 1 || a + 2 == 3 -> 5
else -> 6
}
fun box(): String {
if (foo(1) != 5) return "fail1: ${foo(1)}"
if (foo(2) != 6) return "fail2: ${foo(1)}"
return "OK"
}