Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
controlStructures
/
ifConsts.kt
blob: 495386e9c3c37d96b61814622b5aa91cb445f9df [
file
]
fun foo
(
b
:
Boolean
):
Int
{
return
if
(
b
)
{
100
}
else
if
(
false
)
{
101
}
else
if
(
true
)
{
102
}
else
if
(
true
)
{
103
}
else
if
(
b
)
{
104
}
else
{
105
}
}
// 2 BIPUSH
// 1 BIPUSH 100
// 1 BIPUSH 102