bcfafc601e
This change allows to revert adding `WITH_STDLIB` directive to tests which happened at `a9343aeb`. Co-authored-by: Alexander Udalov <Alexander.Udalov@jetbrains.com>
14 lines
410 B
Kotlin
Vendored
14 lines
410 B
Kotlin
Vendored
enum class Color { RED, GREEN, BLUE }
|
|
|
|
fun foo(arr: Array<Color>): Color {
|
|
loop@ for (color in arr) {
|
|
when (color) {
|
|
Color.RED -> return color
|
|
Color.GREEN -> break@loop
|
|
Color.BLUE -> if (arr.size == 1) return color else continue@loop
|
|
}
|
|
}
|
|
return Color.GREEN
|
|
}
|
|
|
|
fun box() = if (foo(arrayOf(Color.BLUE, Color.GREEN)) == Color.GREEN) "OK" else "FAIL" |