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=T6985719d.out -XDrawDiagnostics T6985719d.java
745N/A */
745N/A
745N/Aimport java.util.List;
745N/A
745N/Aclass T6985719d {
745N/A abstract class A { abstract void f(List<String> ls); }
745N/A interface B<X> { void f(List<X> ls); }
745N/A abstract class C extends A implements B<Integer> {}
745N/A}