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

Wed, 14 Nov 2018 10:18:25 -0800

author
diazhou
date
Wed, 14 Nov 2018 10:18:25 -0800
changeset 3762
7909abb85562
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u201-b04 for changeset a7f48b9dfb82

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

mercurial