2007-12-01 00:00:00 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 4524388 4785453
|
|
|
|
* @summary "attemping to assign weaker access" message doesn't give method line number
|
|
|
|
* @author Neal Gafter
|
|
|
|
*
|
2010-07-26 21:18:45 +00:00
|
|
|
* @compile/fail/ref=OverridePosition.out -XDrawDiagnostics OverridePosition.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package T4524388;
|
|
|
|
|
|
|
|
interface Interface {
|
|
|
|
void method();
|
|
|
|
}
|
|
|
|
|
|
|
|
class Testa implements Interface {
|
|
|
|
void method() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
class A {
|
|
|
|
void method() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A implements Interface {
|
|
|
|
}
|