Files
kotlin/compiler/testData/codegen/box/when/noElseAssignedNoMatch.kt

9 lines
160 B
Kotlin

fun box(): String {
var r = "OK"
val x = 3
val y: Unit = when (x) {
1 -> { r = "Fail 0" }
2 -> { r = "Fail 1" }
}
return r
}