langtools/test/tools/javac/generics/6476118/T6476118a.java
author vromero
Thu, 01 Jun 2017 12:51:26 -0700
changeset 45413 75202c6b2c35
parent 7628 e7baeb97d164
permissions -rw-r--r--
7170058: Confusing error message from javac when overriding a method from a raw supertype Reviewed-by: mcimadamore

/**
 * @test  /nodynamiccopyright/
 * @bug 6476118 7170058
 * @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; }
    }
}