test/tools/javac/annotations/typeAnnotations/failures/Scopes.java

Sat, 13 Apr 2013 12:25:44 +0100

author
vromero
date
Sat, 13 Apr 2013 12:25:44 +0100
changeset 1690
76537856a54e
parent 1521
71f35e4b93a5
child 2134
b0c086cd4520
permissions
-rw-r--r--

8010659: Javac Crashes while building OpenJFX
Reviewed-by: jjg
Contributed-by: maurizio.cimadamore@oracle.com

jjg@1521 1 /*
jjg@1521 2 * @test /nodynamiccopyright/
jjg@1521 3 * @bug 6843077 8006775
jjg@1521 4 * @summary check that A is accessible in the class type parameters
jjg@1521 5 * @author Mahmood Ali
jjg@1521 6 * @compile/fail/ref=Scopes.out -XDrawDiagnostics Scopes.java
jjg@1521 7 */
jjg@1521 8 class Scopes<T extends @UniqueInner Object> {
jjg@1521 9 // UniqueInner is not visible in the type parameters.
jjg@1521 10 // One has to use Scopes.UniqueInner.
jjg@1521 11 // Annotations with the default @Target are not allowed there,
jjg@1521 12 // so we also get the second error about the invalid location.
jjg@1521 13 // Adding the target here doesn't matter, as we don't resolve
jjg@1521 14 // the annotation type.
jjg@1521 15 // @Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
jjg@1521 16 @interface UniqueInner { };
jjg@1521 17 }

mercurial