Files
kotlin/compiler/testData/codegen/box/when/whenSubjectVariable/equalityWithSubjectVariable.kt
Zalim Bashorov 3c765e3625 [JS BE] Support val in when subject
#KT-25014 Fixed
2018-08-09 16:22:25 +03:00

9 lines
145 B
Kotlin
Vendored

// !LANGUAGE: +VariableDeclarationInWhenSubject
val x = 1
fun box() =
when (val y = x) {
1 -> "OK"
else -> "Fail: $y"
}