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