67cce57aeb
Companion object now directly follows enum entries to avoid having them at the middle. Some decompiler & stub builder tests fixed accordingly.
25 lines
403 B
Kotlin
25 lines
403 B
Kotlin
// IntelliJ API Decompiler stub source generated from a class file
|
|
// Implementation of methods is not available
|
|
|
|
package test
|
|
|
|
internal final enum class Enum private () : kotlin.Enum<test.Enum> {
|
|
A
|
|
|
|
B
|
|
|
|
C
|
|
|
|
D
|
|
|
|
E
|
|
|
|
F
|
|
|
|
internal companion object {
|
|
internal final val c: kotlin.Int /* compiled code */
|
|
}
|
|
|
|
internal open fun f(): kotlin.Int { /* compiled code */ }
|
|
}
|