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

Mon, 26 Oct 2015 13:23:30 -0700

author
asaha
date
Mon, 26 Oct 2015 13:23:30 -0700
changeset 2999
683b3e7e05a7
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u76-b00 for changeset 10ffafaf5340

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

mercurial