author | lana |
Tue, 25 Apr 2017 07:38:50 +0000 | |
changeset 44909 | b53c770dc04f |
parent 26528 | a1a7ad15183e |
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 }