Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
when
/
simpleConstValsInsideWhen.kt
blob: 229da2d1864e4e0dc445c5da36861485a1ea4ee8 [
file
] [
log
] [
blame
]
const
val A
=
10
private
const
val B
=
20
object
Constants
{
const
val C
=
30
}
fun foo
(
state
:
Int
)
{
when
(
state
)
{
A
->
return
B
->
return
else
->
return
}
}
// 1 LOOKUPSWITCH