Files
kotlin-fork/compiler/testData/codegen/box/when/whenSubjectVariable/kt27161_string.kt
T
2018-09-27 10:48:35 +03:00

11 lines
161 B
Kotlin
Vendored

fun peek() = "A"
fun box(): String {
val x = when (val s = peek()) {
"A" -> "OK"
"B" -> "B"
else -> "other $s"
}
return x
}