Files
kotlin-fork/compiler/testData/codegen/bytecodeText/whenEnumOptimization/whenOr.kt
T
2021-02-17 18:43:23 +01:00

12 lines
207 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM
fun test(x: Int): String {
return when {
x == 1 || x == 3 || x == 5 -> "135"
x == 2 || x == 4 || x == 6 -> "246"
else -> "other"
}
}
// 1 TABLESWITCH