Files
kotlin-fork/compiler/testData/diagnostics/tests/override/ObjectDelegationManyImpl.fir.kt
T
2021-04-02 10:24:20 +03:00

14 lines
206 B
Kotlin
Vendored

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 {}