IR: fix origin of default getter of Enum.entries synthetic property

This commit is contained in:
Mikhail Glukhikh
2022-08-16 12:05:08 +02:00
committed by Space
parent 28c83e43ad
commit 8a4105e542
9 changed files with 15 additions and 13 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ enum class MyEnum : Enum<MyEnum> {
fun valueOf(value: String): MyEnum /* Synthetic body for ENUM_VALUEOF */
val entries: EnumEntries<MyEnum>
get
get(): EnumEntries<MyEnum> /* Synthetic body for ENUM_ENTRIES */
}