80cccce8d0
The `*leaf*` functions were introduced due to my false assumption. The normal processing functions only collect leafs already. `*leaf*`s are bad, because they don't cache anything. The change in AbstractFirOverrideScope reflects KT-63290, and is needed to avoid duplicate `CONFLICTING_OVERLOADS` and `VIRTUAL_MEMBER_HIDDEN`.
8 lines
155 B
Kotlin
Vendored
8 lines
155 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
enum class E {
|
|
ENTRY;
|
|
|
|
fun <!VIRTUAL_MEMBER_HIDDEN!>getDeclaringClass<!>() {}
|
|
fun <!VIRTUAL_MEMBER_HIDDEN!>finalize<!>() {}
|
|
}
|