2c2851af6e
Also fix FIR implementation to generate boolean branches in the same order as FE1.0.
9 lines
105 B
Kotlin
Vendored
9 lines
105 B
Kotlin
Vendored
enum class MyEnum {
|
|
A, B, C
|
|
}
|
|
|
|
fun test(e: MyEnum) {
|
|
<caret>when (e) {
|
|
else -> {}
|
|
}
|
|
} |