FIR: report MANY_INTERFACES_MEMBER_NOT_IMPLEMENTED also on interfaces

This commit is contained in:
Mikhail Glukhikh
2021-04-28 09:58:54 +03:00
committed by TeamCityServer
parent 3fc2cc410c
commit 67d1c35f19
9 changed files with 17 additions and 29 deletions
@@ -1,13 +0,0 @@
interface ILeft {
fun foo() {}
}
interface IRight {
fun foo()
}
interface IDerived : ILeft, IRight
<!MANY_INTERFACES_MEMBER_NOT_IMPLEMENTED!>class CDerived<!> : ILeft, IRight
abstract class ADerived : ILeft, IRight
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
interface ILeft {
fun foo() {}
}