Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
whenEnumOptimization
/
whenOr.kt
blob: 5b192881649d92cc3ce9d20f9999a26e11cd30ef [
file
]
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