author | hseigel |
Wed, 02 Mar 2016 23:48:41 +0000 | |
changeset 36397 | c487ced7231c |
parent 30719 | 91834c070ba5 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
30719
91834c070ba5
8074417: Group 13a: golden files for tests in tools/javac/generics dir
sogoel
parents:
5520
diff
changeset
|
2 |
* @test /nodynamiccopyright/ |
10 | 3 |
* @bug 4725668 |
4 |
* @summary generics: reject implementation with incorrect return type |
|
5 |
* @author gafter |
|
6 |
* |
|
30719
91834c070ba5
8074417: Group 13a: golden files for tests in tools/javac/generics dir
sogoel
parents:
5520
diff
changeset
|
7 |
* @compile/fail/ref=SelfImplement.out -XDrawDiagnostics SelfImplement.java |
10 | 8 |
*/ |
9 |
||
10 |
class SelfImplement { |
|
11 |
static abstract class A<T> { |
|
12 |
abstract void f(T t); |
|
13 |
public int f(Integer t) { return 3; } |
|
14 |
} |
|
15 |
static abstract class B extends A<Integer> { |
|
16 |
// error: A<Integer>.f(Integer) returning int can't implement |
|
17 |
// A<Integer>.f(Integer) returning void. |
|
18 |
} |
|
19 |
} |