test/tools/javac/generics/7022054/T7022054neg2.java

Mon, 02 Sep 2013 22:38:36 +0100

author
vromero
date
Mon, 02 Sep 2013 22:38:36 +0100
changeset 2000
4a6acc42c3a1
parent 0
959103a6100f
permissions
-rw-r--r--

8016177: structural most specific and stuckness
Reviewed-by: jjg, vromero
Contributed-by: maurizio.cimadamore@oracle.com

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 7022054
     4  *
     5  * @summary  Invalid compiler error on covariant overriding methods with the same erasure
     6  * @compile/fail/ref=T7022054neg2.out -XDrawDiagnostics T7022054neg2.java
     7  *
     8  */
    10 class T7022054neg2 {
    11     static class A {
    12         static A m(String s) { return null; }
    13     }
    14     static class B extends A {
    15         static <X extends String> A m(X s) { return null; }
    16     }
    17 }

mercurial