Files
kotlin/compiler/testData/codegen/box/when/switchOptimizationUnordered.kt
2018-08-09 14:22:50 +03:00

21 lines
392 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
// CHECK_CASES_COUNT: function=foo count=3
// CHECK_IF_COUNT: function=foo count=0
fun foo(x: Int): Int {
return when (x) {
2 -> 6
1 -> 5
3 -> 7
else -> 8
}
}
fun box(): String {
var result = (0..3).map(::foo).joinToString()
if (result != "8, 5, 6, 7") return "unordered:" + result
return "OK"
}