39bd97147f
Usually FIR enum entry is initialized by anonymous object, which is the container for all enum entry' declarations. However, for simple enum entries there is no need of initializer at all.
8 lines
107 B
Kotlin
Vendored
8 lines
107 B
Kotlin
Vendored
enum interface Some {
|
|
// Enum part
|
|
D;
|
|
|
|
// Interface like part
|
|
fun test()
|
|
val foo: Int
|
|
} |