Maurizio Cimadamore 929d3fd3f5 6476118: compiler bug causes runtime ClassCastException for generics overloading
Compiler allows bridge methods to override unrelated method

Reviewed-by: jjg
2010-12-09 15:50:34 +00:00

15 lines
409 B
Java

/**
* @test /nodynamiccopyright/
* @bug 6476118 6533652
* @summary compiler bug causes runtime ClassCastException for generics overloading
* @compile/fail/ref=T6476118b.out -XDrawDiagnostics T6476118b.java
*/
class T6476118b {
public final int compareTo(Object o) { return 0; }
static class B extends T6476118b implements Comparable<B> {
public int compareTo(B b){ return 0; }
}
}