a4c7619c89
Without this commit, JVM name mapping logic in BE does not work for FIR, because FIR cannot use old BuiltInsPackageFragmentImpl descriptor. In this commit we add our own implementation thus fixing a pack of FIR black box tests.
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" |