jfranck@2020: /* @test /nodynamiccopyright/ jfranck@2020: * @bug 7192246 mcimadamore@1393: * @summary flow analysis is not run on inlined default bodies mcimadamore@1415: * @compile/fail/ref=Neg06.out -XDrawDiagnostics Neg06.java mcimadamore@1393: */ mcimadamore@1393: mcimadamore@1393: class Neg06 { mcimadamore@1393: mcimadamore@1393: interface A { mcimadamore@1393: default String m() { C.m(); } mcimadamore@1393: } mcimadamore@1393: mcimadamore@1393: static class C { mcimadamore@1393: static String m() { return ""; } mcimadamore@1393: } mcimadamore@1393: }