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

changeset 0
959103a6100f
equal deleted inserted replaced
-1:000000000000 0:959103a6100f
1 /*
2 * @test /nodynamiccopyright/
3 * @bug 6985719
4 * @summary Alike methods in interfaces (Inheritance and Overriding)
5 * @author mcimadamore
6 * @compile/fail/ref=T6985719g.out -XDrawDiagnostics T6985719g.java
7 */
8
9 import java.util.List;
10
11 class T6985719g {
12 interface A<X> { void f(List<X> ls); }
13 interface B extends A<String> { void f(List<Integer> ls); }
14 }

mercurial