3980N/A/**
3980N/A * @test /nodynamiccopyright/
3980N/A * @bug 6863465
3980N/A * @summary javac doesn't detect circular subclass dependencies via qualified names
3980N/A * @author Maurizio Cimadamore
5600N/A * @compile/fail/ref=T6863465c.out -XDrawDiagnostics T6863465c.java
5600N/A */
5600N/A
5600N/Aclass T6863465c {
3980N/A static class x { static interface y {} }
3980N/A static class z extends x implements c.b {}
3980N/A static class a { static interface b { static interface d {} } }
5600N/A static class c extends a implements z.y, z.d {}
5600N/A}
5600N/A