Pergunta de entrevista da empresa Recro

interface A { default display(){ } } interface B { default display() { } } class C implements A, B { } Is there any problem in this snippet ? If yes , what is it? and how to resolve it?