2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-09-05 23:43:00 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 4402884
|
|
|
|
* @summary javac improperly extends superclass's scope to implements clause
|
|
|
|
* @author gafter
|
|
|
|
*
|
|
|
|
* @clean I
|
2014-09-05 23:43:00 +00:00
|
|
|
* @compile/fail/ref=ExtendsScope.out -XDrawDiagnostics ExtendsScope.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class P {
|
|
|
|
interface I {}
|
|
|
|
}
|
|
|
|
|
|
|
|
class T extends P implements I { // error: no I in scope
|
|
|
|
}
|