K2: make not implemented checker more close to K1 logic

#KT-54049 Fixed
This commit is contained in:
Mikhail Glukhikh
2022-09-15 10:04:52 +02:00
committed by Space
parent fe38089205
commit a70c4f15d6
4 changed files with 18 additions and 25 deletions
@@ -1,13 +0,0 @@
abstract class ClassEmpty {
abstract fun foo()
}
interface BaseEmpty {
fun foo()
}
interface BaseDefault {
fun foo() {}
}
abstract <!MANY_IMPL_MEMBER_NOT_IMPLEMENTED!>class ClassEmpty_BaseEmpty_BaseDefault<!> : ClassEmpty(), BaseEmpty, BaseDefault
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
abstract class ClassEmpty {
abstract fun foo()
}