author | hseigel |
Wed, 02 Mar 2016 23:48:41 +0000 | |
changeset 36397 | c487ced7231c |
parent 30724 | 0686b5ea7958 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
30724
0686b5ea7958
8074514: Group 13d: golden files for tests in tools/javac/generics dir
sogoel
parents:
5520
diff
changeset
|
2 |
* @test /nodynamiccopyright/ |
10 | 3 |
* @bug 4695348 |
4 |
* @summary generics: compiler allows ref to type bounds in static members |
|
5 |
* @author gafter |
|
6 |
* |
|
30724
0686b5ea7958
8074514: Group 13d: golden files for tests in tools/javac/generics dir
sogoel
parents:
5520
diff
changeset
|
7 |
* @compile/fail/ref=T4695348.out -XDrawDiagnostics T4695348.java |
10 | 8 |
*/ |
9 |
||
10 |
class T4695348<T> { |
|
11 |
static T x = null; |
|
12 |
} |