Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
when
/
subjectValHasLocalVariableSlot.kt
blob: d87b255666c590cd21adf0a44245519fa8403aa0 [
file
]
fun test
(
a
:
Any
)
=
when
(
val subject
=
a
)
{
is
Int
->
"Int $subject"
is
String
->
"String ${subject.length}"
else
->
"other"
}
// 1 LOCALVARIABLE subject Ljava/lang/Object;