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;