FIR: use override checker when populating directOverriddenProperties

This commit is contained in:
Jinseong Jeon
2021-02-08 15:49:48 -08:00
committed by Mikhail Glukhikh
parent fa1507fb91
commit 9370f918e9
9 changed files with 20 additions and 107 deletions
@@ -1,11 +0,0 @@
enum class E {
ENTRY;
override val name: String = "lol"
override val ordinal: Int = 0
<!OVERRIDING_FINAL_MEMBER!>override<!> fun compareTo(other: E) = -1
<!OVERRIDING_FINAL_MEMBER!>override<!> fun equals(other: Any?) = true
<!OVERRIDING_FINAL_MEMBER!>override<!> fun hashCode() = -1
}
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
enum class E {
ENTRY;