Files
kotlin-fork/idea/testData/decompiler/decompiledText/Enum.expected.kt
T
Mikhail Glukhikh 67cce57aeb Decompiler & stub builder fixed accordingly with new enum syntax.
Companion object now directly follows enum entries to avoid having them at the middle.
Some decompiler & stub builder tests fixed accordingly.
2015-05-15 16:13:29 +03:00

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 */ }
}