1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
17 lines
246 B
Kotlin
17 lines
246 B
Kotlin
enum class Season {
|
|
WINTER,
|
|
SPRING,
|
|
SUMMER,
|
|
AUTUMN
|
|
}
|
|
|
|
fun foo(): Season = Season.SPRING
|
|
fun bar(): Season = Season.SPRING
|
|
|
|
fun box() : String {
|
|
when (foo()) {
|
|
bar() -> return "OK"
|
|
else -> return "fail"
|
|
}
|
|
}
|