Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
controlStructures
/
ifConsts.kt
blob: 495386e9c3c37d96b61814622b5aa91cb445f9df [
file
] [
log
] [
blame
]
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