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=T6863465a.out -XDrawDiagnostics T6863465a.java
689N/A */
689N/A
689N/Aclass T6863465a {
689N/A static class a { static interface b {} }
689N/A static class c extends a implements z.y {}
689N/A static class x { static interface y {} }
689N/A static class z extends x implements c.b {}
689N/A}