Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
16 lines
329 B
Java
16 lines
329 B
Java
/*
|
|
* @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
|
|
}
|