Files
kotlin-fork/nj2k/testData/newJ2k/switch/caseWithBlock.kt
T
2019-09-29 11:39:36 +03:00

15 lines
222 B
Kotlin
Vendored

fun foo() {
when (a) {
1 -> {
val x = 1
println(x)
}
2 -> {
val x = 2
println(x)
}
3 -> {
println(3)
}
}
}