1 /*
   2  * @test /nodynamiccopyright/
   3  * @bug 6843077 8006775
   4  * @summary test incomplete vararg declaration
   5  * @author Mahmood Ali
   6  * @compile/fail/ref=IncompleteVararg.out -XDrawDiagnostics IncompleteVararg.java
   7  */
   8 class IncompleteArray {
   9   // the last variable may be vararg
  10   void method(int @A test) { }
  11 }
  12 
  13 @interface A { }