author | sogoel |
Fri, 15 May 2015 16:53:42 -0700 | |
changeset 30721 | 1024d425d97e |
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 4738171 |
4 |
* @summary generics: problem with equivalence of generic types |
|
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=T4738171.out -XDrawDiagnostics T4738171.java |
10 | 8 |
*/ |
9 |
||
10 |
interface If<T> { |
|
11 |
final If<T> C0 = null; |
|
12 |
} |