Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
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;