author | sogoel |
Fri, 05 Sep 2014 16:43:00 -0700 | |
changeset 26528 | a1a7ad15183e |
parent 5520 | 86e4b9a9da40 |
permissions | -rw-r--r-- |
/* * @test /nodynamiccopyright/ * @bug 4402884 * @summary javac improperly extends superclass's scope to implements clause * @author gafter * * @clean I * @compile/fail/ref=ExtendsScope.out -XDrawDiagnostics ExtendsScope.java */ class P { interface I {} } class T extends P implements I { // error: no I in scope }