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