1 /*
   2  * @test /nodynamiccopyright/
   3  * @bug 8006775
   4  * @summary Import clauses cannot use annotations.
   5  * @author Werner Dietl
   6  * @compile/fail/ref=AnnotatedImport.out -XDrawDiagnostics AnnotatedImport.java
   7  */
   8 
   9 import java.@A util.List;
  10 import @A java.util.Map;
  11 import java.util.@A HashMap;
  12 
  13 class AnnotatedImport { }
  14 
  15 @interface A { }