interface A { fun foo() } interface B { fun foo() } interface C : A, B { } fun test(c: C) { c.foo() } // MULTIRESOLVE