test/tools/javac/generics/6985719/T6985719f.java

Thu, 06 Jun 2013 15:33:40 +0100

author
mcimadamore
date
Thu, 06 Jun 2013 15:33:40 +0100
changeset 1811
349160289ba2
parent 0
959103a6100f
permissions
-rw-r--r--

8008627: Compiler mishandles three-way return-type-substitutability
Summary: Compiler should not enforce an order in how ambiguous methods should be resolved
Reviewed-by: jjg, vromero

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug     6985719
     4  * @summary Alike methods in interfaces (Inheritance and Overriding)
     5  * @author  mcimadamore
     6  * @compile/fail/ref=T6985719f.out -XDrawDiagnostics T6985719f.java
     7  */
     9 import java.util.List;
    11 class T6985719f {
    12     abstract class A { abstract void f(List<String> ls); }
    13     abstract class B extends A { void f(List<Integer> ls); }
    14 }

mercurial