Files
kotlin/compiler/testData/codegen/bytecodeText/when/subjectValInIntWhenHasLocalVariableSlot.kt
Dmitry Petrov a4b5d74ae3 Generate debug information for 'when' subject variable
NB debugger tests currently don't support language version or individual
language feature settings.
2018-06-20 14:06:34 +03:00

11 lines
194 B
Kotlin
Vendored

// !LANGUAGE: +VariableDeclarationInWhenSubject
fun test(a: Int) =
when (val subject = a) {
1 -> 0
2 -> 1
3 -> 2
else -> -1
}
// 1 LOCALVARIABLE subject