mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00

Rules for method clash use notion of subsignature, which is sometimes too strict and incompatible with JDK 6 Reviewed-by: jjg
17 lines
403 B
Java
17 lines
403 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7022054
|
|
*
|
|
* @summary Invalid compiler error on covariant overriding methods with the same erasure
|
|
* @compile/fail/ref=T7022054neg1.out -XDrawDiagnostics T7022054neg1.java
|
|
*
|
|
*/
|
|
|
|
class T7022054neg1 {
|
|
static class A {
|
|
A m(String s) { return null; }
|
|
}
|
|
static class B extends A {
|
|
<X extends String> A m(X s) { return null; }
|
|
}
|
|
}
|