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

17 lines
417 B
Java

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