author | hseigel |
Wed, 02 Mar 2016 23:48:41 +0000 | |
changeset 36397 | c487ced7231c |
parent 30724 | 0686b5ea7958 |
child 45413 | 75202c6b2c35 |
permissions | -rw-r--r-- |
/* * @test /nodynamiccopyright/ * @bug 4951670 * @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; } }