interface IA { void a(Iterable x); } interface IB { void a(Iterable x); } abstract class C implements IA, IB {}