Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eadcce82e781d7be850118e82333893ab7cf10a9
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
when
/
subjectValHasLocalVariableSlot.kt
blob: 25b33792de05261fd0ce1b408c28df78ece69787 [
file
]
// LANGUAGE: +VariableDeclarationInWhenSubject
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;