2d18dda3f2
Reviewed-by: vromero
18 lines
417 B
Java
18 lines
417 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7022054
|
|
*
|
|
* @summary Invalid compiler error on covariant overriding methods with the same erasure
|
|
*
|
|
* @compile/fail/ref=T7022054pos2.out -XDrawDiagnostics T7022054pos2.java
|
|
*/
|
|
|
|
class T7022054pos2 {
|
|
static class A {
|
|
static A m(String s) { return null; }
|
|
}
|
|
static class B extends A {
|
|
static <X extends B> X m(String s) { return null; }
|
|
}
|
|
}
|