4532f52898
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.
12 lines
155 B
Kotlin
Vendored
12 lines
155 B
Kotlin
Vendored
enum class Z {
|
|
ENTRY {
|
|
fun test() {}
|
|
|
|
inner class A {
|
|
fun test2() {
|
|
test()
|
|
}
|
|
}
|
|
}
|
|
}
|