1  /* Test C11 static assertions.  More invalid assertions.  */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=c11 -pedantic-errors" } */
       4  
       5  /* Static assertions not valid in old-style parameter declarations
       6     because declarations there must have declarators.  */
       7  
       8  void
       9  f (i)
      10       int i;
      11       _Static_assert (1, ""); /* { dg-error "expected" } */
      12  {
      13  }