// FIR_IDENTICAL interface ILeft { fun foo() {} val bar: Int get() = 1 } interface IRight { fun foo() {} val bar: Int get() = 2 } class CBoth : ILeft, IRight { override fun foo() { super.foo() super.foo() } override val bar: Int get() = super.bar + super.bar }