Files
kotlin-fork/compiler/testData/ir/irText/firProblems/thisInEnumConstructor.kt.txt
T
2022-11-22 10:01:16 +00:00

19 lines
368 B
Plaintext
Vendored

enum class EE : Enum<EE> {
private constructor(myName: String = Companion.toString().lowercase()) /* primary */ {
super/*Enum*/<EE>()
/* <init>() */
}
val myName: String
field = myName
get
ENTRY = EE()
fun values(): Array<EE> /* Synthetic body for ENUM_VALUES */
fun valueOf(value: String): EE /* Synthetic body for ENUM_VALUEOF */
}