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 4987844 |
4 |
* @summary compiler crash with ill-formed annotation |
|
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=GenLit1.out -XDrawDiagnostics GenLit1.java |
10 | 8 |
*/ |
9 |
||
10 |
package genLit1; |
|
11 |
||
12 |
@interface X { |
|
13 |
Class value(); |
|
14 |
} |
|
15 |
||
16 |
@X(Z.class) |
|
17 |
class Y<Z> { |
|
18 |
} |