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