1 /*
   2  * @test /nodynamiccopyright/
   3  * @bug 8006775
   4  * @summary Package declarations cannot use annotations.
   5  * @author Werner Dietl
   6  * @compile/fail/ref=AnnotatedPackage2.out -XDrawDiagnostics AnnotatedPackage2.java
   7  */
   8  
   9 package @A p1.p2;
  10 
  11 import java.lang.annotation.*;
  12 
  13 class AnnotatedPackage2 { }
  14 
  15 @Target(ElementType.TYPE_USE)
  16 @interface A { }