Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
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