jfranck@2020: /* @test /nodynamiccopyright/ jfranck@2020: * @bug 7192246 mcimadamore@1393: * @summary check that default overrides are properly type-checked mcimadamore@1415: * @compile/fail/ref=Neg08.out -XDrawDiagnostics Neg08.java mcimadamore@1393: */ mcimadamore@1393: class Neg08 { mcimadamore@1393: interface I { mcimadamore@1393: default void m() { } mcimadamore@1393: } mcimadamore@1393: mcimadamore@1393: static class C1 { mcimadamore@1393: void m() { } //weaker modifier mcimadamore@1393: } mcimadamore@1393: mcimadamore@1393: static class C2 extends C1 implements I { } mcimadamore@1393: mcimadamore@1393: static class C3 implements I { mcimadamore@1393: void m() { } //weaker modifier mcimadamore@1393: } mcimadamore@1393: }