langtools/test/tools/javac/generics/SelfImplement.java
author hseigel
Wed, 02 Mar 2016 23:48:41 +0000
changeset 36397 c487ced7231c
parent 30719 91834c070ba5
permissions -rw-r--r--
Merge

/*
 * @test /nodynamiccopyright/
 * @bug 4725668
 * @summary generics: reject implementation with incorrect return type
 * @author gafter
 *
 * @compile/fail/ref=SelfImplement.out -XDrawDiagnostics   SelfImplement.java
 */

class SelfImplement {
    static abstract class A<T> {
        abstract void f(T t);
        public int f(Integer t) { return 3; }
    }
    static abstract class B extends A<Integer> {
        // error: A<Integer>.f(Integer) returning int can't implement
        //        A<Integer>.f(Integer) returning void.
    }
}