Files
kotlin/compiler/testData/codegen/box/when/noElseInStatement.kt
2013-09-13 22:04:46 +02:00

7 lines
101 B
Kotlin
Vendored

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