Files
Alexander Udalov 6219f7fc0d JVM IR: fix detection of enum entries in the same module
Use the new `IrClass.hasEnumEntries` flag added in the previous commit.

 #KT-61208 Fixed
2023-10-16 20:22:20 +00:00

6 lines
73 B
Kotlin
Vendored

fun test() {
EnumClass.entries.forEach {
println(it)
}
}