Files
kotlin-fork/compiler/testData/codegen/statements/when.kt
T
2012-11-22 22:32:21 +04:00

10 lines
114 B
Kotlin

fun z() {}
fun foo(x: Int) {
when {
x == 21 -> z()
x == 42 -> z()
else -> {}
}
}