langtools/test/tools/javac/annotations/typeAnnotations/failures/AnnotatedPackage2.java
author jjg
Tue, 15 Oct 2013 15:57:13 -0700
changeset 21041 99f5e5e97425
parent 15385 ee1eebe7e210
permissions -rw-r--r--
8026564: import changes from type-annotations forest Reviewed-by: jjg Contributed-by: wdietl@gmail.com, steve.sides@oracle.com

/*
 * @test /nodynamiccopyright/
 * @bug 8006775
 * @summary Package declarations cannot use annotations.
 * @author Werner Dietl
 * @compile/fail/ref=AnnotatedPackage2.out -XDrawDiagnostics AnnotatedPackage2.java
 */

package @A p1.p2;

import java.lang.annotation.*;

class AnnotatedPackage2 { }

@Target(ElementType.TYPE_USE)
@interface A { }