7 lines
99 B
Kotlin
Vendored
7 lines
99 B
Kotlin
Vendored
fun foo(x: Int) {
|
|
val y: Unit = when (x) {
|
|
2 -> {}
|
|
3 -> {}
|
|
}
|
|
return y
|
|
} |