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

9 lines
155 B
Kotlin
Vendored

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