author | duke |
Wed, 05 Jul 2017 23:01:50 +0200 (2017-07-05) | |
changeset 44228 | e46434c65a2b |
parent 6711 | fc9732adc790 |
permissions | -rw-r--r-- |
/** * @test /nodynamiccopyright/ * @bug 6863465 * @summary javac doesn't detect circular subclass dependencies via qualified names * @author Maurizio Cimadamore * @compile/fail/ref=T6863465a.out -XDrawDiagnostics T6863465a.java */ class T6863465a { static class a { static interface b {} } static class c extends a implements z.y {} static class x { static interface y {} } static class z extends x implements c.b {} }