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 5046972 |
4 |
* @summary type parameter referenced in static inner class improperly allowed! |
|
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=TyparamStaticScope2.out -XDrawDiagnostics TyparamStaticScope2.java |
10 | 8 |
*/ |
9 |
||
10 |
package typaram.static_.scope2; |
|
11 |
||
12 |
class JBug<T> { |
|
13 |
static class Inner1 implements Set<T> {} |
|
14 |
} |
|
15 |
||
16 |
interface Set<T> {} |