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

11 lines
137 B
Kotlin

var r = "Fail 0"
fun foo(x: Int) {
return when (x) {
1 -> { r = "OK" }
}
}
fun box(): String {
foo(1)
return r
}