745N/A/*
745N/A * @test /nodynamiccopyright/
745N/A * @bug 6985719
745N/A * @summary Alike methods in interfaces (Inheritance and Overriding)
745N/A * @author mcimadamore
745N/A * @compile/fail/ref=T6985719c.out -XDrawDiagnostics T6985719c.java
745N/A */
745N/A
745N/Aimport java.util.List;
745N/A
745N/Aclass T6985719c {
745N/A interface A { void f(List<String> ls); }
745N/A interface B<X> { void f(List<X> ls); }
745N/A interface C extends A,B<Integer> {}
745N/A}