Files
kotlin/compiler/testData/codegen/box/constants/constantsInWhen.kt
2013-09-03 17:05:21 +04:00

18 lines
235 B
Kotlin
Vendored

fun test(
b: Boolean,
i: Int
) {
if (b) {
when (i) {
0 -> foo(1)
else -> null
}
} else null
}
fun foo(i: Int) = i
fun box(): String {
test(true, 1)
return "OK"
}