1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
9 lines
152 B
Kotlin
9 lines
152 B
Kotlin
fun foo(i: Int) : Int =
|
|
when (i) {
|
|
1 -> 1
|
|
null -> 1
|
|
else -> 1
|
|
}
|
|
|
|
fun box() : String = if (foo(1) == 1) "OK" else "fail"
|