Files
kotlin-fork/backend.native/tests/external/codegen/box/when/noElseNoMatch.kt
T
2017-03-13 15:31:46 +03:00

8 lines
104 B
Kotlin

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