jdk-24/test/langtools/tools/javac/generics/T4757416.java

18 lines
472 B
Java
Raw Normal View History

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