jfranck@2020: /* @test /nodynamiccopyright/ jfranck@2020: * @bug 7192246 mcimadamore@1393: * @summary negative test for ambiguous defaults mcimadamore@1415: * @compile/fail/ref=Neg01.out -XDrawDiagnostics Neg01.java mcimadamore@1393: */ mcimadamore@1393: mcimadamore@1393: class Neg01 { mcimadamore@1393: interface IA { default int m() { return Neg01.m1(this); } } mcimadamore@1393: interface IB { default int m() { return Neg01.m2(this); } } mcimadamore@1393: mcimadamore@1393: static class A implements IA {} mcimadamore@1393: static class B implements IB {} mcimadamore@1393: mcimadamore@1393: static class AB implements IA, IB {} mcimadamore@1393: mcimadamore@1393: static int m1(IA a) { return 0; } mcimadamore@1393: static int m2(IB b) { return 0; } mcimadamore@1393: }