Files
kotlin/compiler/testData/codegen/box/when/whenSubjectVariable/equalityWithSubjectVariable.kt
2018-06-20 14:06:34 +03:00

10 lines
167 B
Kotlin
Vendored

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