FirNotImplementedOverrideChecker: check also anonymous objects / enums

This commit is contained in:
Mikhail Glukhikh
2021-03-24 11:23:59 +03:00
parent 82b8cc333e
commit 449a79151a
19 changed files with 44 additions and 64 deletions
@@ -1,13 +0,0 @@
enum class EnumClass {
E1 {
override fun foo() = 1
override val bar: String = "a"
},
E2 {
};
abstract fun foo(): Int
abstract val bar: String
}