Files
kotlin-fork/compiler/testData/codegen/box/when/noElseNoMatch.kt
T

8 lines
104 B
Kotlin
Vendored

fun box(): String {
val x = 3
when (x) {
1 -> {}
2 -> {}
}
return "OK"
}