Files
kotlin/compiler/testData/codegen/box/unit/nullableUnitInWhen1.kt
2013-12-11 07:40:19 +04:00

13 lines
129 B
Kotlin

fun foo() {}
fun box(): String {
when ("A") {
"B" -> foo()
else -> null
}
foo()
return "OK"
}