2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-06-05 17:57:10 +00:00
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 4720356
|
2007-12-01 00:00:00 +00:00
|
|
|
* @summary compiler fails to check cross-package overriding
|
2014-06-05 17:57:10 +00:00
|
|
|
* @author gafter
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
2014-06-05 17:57:10 +00:00
|
|
|
* @compile/fail/ref=T4720356a.out -XDrawDiagnostics T4720356a.java T4720356b.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package p1;
|
|
|
|
public class T4720356a {
|
|
|
|
void m() {}
|
|
|
|
}
|
|
|
|
class T4720356c extends p2.T4720356b {
|
|
|
|
// conflicting return type, even though a.m() not inherited
|
|
|
|
public int m() { return 1; }
|
|
|
|
}
|