Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49b2ac1b100c5042a0e98582713938062efa6a31
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
localInitializationLVT
/
whenStatementVar.kt
blob: 2a34e4764247e1da1ad8a17a3ae27a64b818c441 [
file
] [
log
] [
blame
]
fun test
(
i
:
Int
):
Char
{
var
c
:
Char
when
(
i
)
{
1
->
c
=
'1'
2
->
c
=
'2'
3
->
c
=
'3'
4
->
c
=
'4'
5
->
c
=
'5'
6
->
c
=
'6'
7
->
c
=
'7'
8
->
c
=
'8'
9
->
c
=
'9'
0
->
c
=
'0'
else
->
c
=
' '
}
return
c
}
// 12 ISTORE 1
// 1 LOCALVARIABLE c C