jfranck@2020: /* @test /nodynamiccopyright/ jfranck@2020: * @bug 7192246 mcimadamore@1393: * @summary check that a class cannot have two sibling interfaces with a default and abstract method mcimadamore@1415: * @compile/fail/ref=Neg14.out -XDrawDiagnostics Neg14.java mcimadamore@1393: */ mcimadamore@1393: class Neg14 { mcimadamore@1393: interface IA { int m(); } mcimadamore@1393: interface IB { default int m() { return 1; } } mcimadamore@1393: mcimadamore@1393: abstract class AB implements IA, IB {} mcimadamore@1393: }