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