FIR: Rework FirNotImplementedOverrideChecker around delegated members reporting
This commit is contained in:
committed by
TeamCityServer
parent
a213ee0e01
commit
a77cbb8f63
@@ -1,13 +0,0 @@
|
||||
interface D {
|
||||
fun foo()
|
||||
}
|
||||
|
||||
interface E {
|
||||
fun foo() {}
|
||||
}
|
||||
|
||||
object Impl : D, E {
|
||||
override fun foo() {}
|
||||
}
|
||||
|
||||
val obj: D = <!MANY_INTERFACES_MEMBER_NOT_IMPLEMENTED!>object<!> : D by Impl, E by Impl {}
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IDENTICAL
|
||||
interface D {
|
||||
fun foo()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user