mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
17 lines
399 B
Java
17 lines
399 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4951670 7170058
|
|
* @summary javac crash with improper overrider
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=ErasureClashCrash.out -XDrawDiagnostics ErasureClashCrash.java
|
|
*/
|
|
|
|
interface Compar<T> {
|
|
int compareTo(T o);
|
|
}
|
|
abstract class ErasureClashCrash implements Compar<ErasureClashCrash> {
|
|
public int compareTo(Object o) {
|
|
return 1;
|
|
}
|
|
}
|