/*
* @test /nodynamiccopyright/
* @bug 4756416 7170058
* @summary generics: erasure clash not detected
* @author gafter
*
* @compile/fail/ref=T4757416.out -XDrawDiagnostics T4757416.java
*/
class T4756416 {
static class C { A id ( A x) { return x; } }
interface I { A id(A x); }
static class D extends C implements I {
public String id(String x) { return x; }
public Integer id(Integer x) { return x; }
}
}