T4757416.java revision 4184:3b9297698293
1/*
2 * @test /nodynamiccopyright/
3 * @bug 4756416 7170058
4 * @summary generics: erasure clash not detected
5 * @author gafter
6 *
7 * @compile/fail/ref=T4757416.out -XDrawDiagnostics   T4757416.java
8 */
9
10class T4756416 {
11    static class C<A> { A id ( A x) { return x; } }
12    interface I<A> { A id(A x); }
13    static class D extends C<String> implements I<Integer> {
14        public String id(String x) { return x; }
15        public Integer id(Integer x) { return x; }
16    }
17}
18