blob: a1be41b035a33020fc9cf8a3a8a54c8614d82202 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4524388 4785453
* @summary "attemping to assign weaker access" message doesn't give method line number
* @author Neal Gafter
*
* @compile/fail/ref=OverridePosition.out -XDstdout -XDdiags=%b:%l:%_%m OverridePosition.java
*/
package T4524388;
interface Interface {
void method();
}
class Testa implements Interface {
void method() {}
}
class A {
void method() {}
}
class B extends A implements Interface {
}