jdk-24/test/langtools/tools/javac/OverrideChecks/T4720356a.java

18 lines
421 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
* @bug 4720356
2007-12-01 00:00:00 +00:00
* @summary compiler fails to check cross-package overriding
* @author gafter
2007-12-01 00:00:00 +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; }
}