67cce57aeb
Companion object now directly follows enum entries to avoid having them at the middle. Some decompiler & stub builder tests fixed accordingly.
16 lines
183 B
Kotlin
16 lines
183 B
Kotlin
package test
|
|
|
|
import dependency.*
|
|
|
|
enum class Enum {
|
|
A B C D E F {
|
|
override fun f() = 4
|
|
}
|
|
|
|
companion object {
|
|
val c: Int = 1
|
|
}
|
|
|
|
open fun f() = 3
|
|
}
|