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