3c765e3625
#KT-25014 Fixed
9 lines
145 B
Kotlin
Vendored
9 lines
145 B
Kotlin
Vendored
// !LANGUAGE: +VariableDeclarationInWhenSubject
|
|
|
|
val x = 1
|
|
|
|
fun box() =
|
|
when (val y = x) {
|
|
1 -> "OK"
|
|
else -> "Fail: $y"
|
|
} |