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