Files
kotlin-fork/compiler/testData/ir/irText/singletons/enumEntry.kt
T
Dmitriy Dolovov 4532f52898 IR text tests: Unmute enum class-related tests
Making enum class-related tests unmuted requires implementing
a special "compatibility" mode for IR tree dumper to filter out
fake override declarations leaking from java.enum.Enum and
kotlin.Enum (JVM-only) classes.
2023-11-30 08:32:35 +00:00

12 lines
155 B
Kotlin
Vendored

enum class Z {
ENTRY {
fun test() {}
inner class A {
fun test2() {
test()
}
}
}
}