(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
noncompile/
pr71583.c
       1  /* PR c/71583 */
       2  /* { dg-do compile } */
       3  
       4  void
       5  f (int i)
       6  {
       7    (int (*)[++i]) { int }; /* { dg-error "expected" } */
       8    (int (*)[++i]) { };
       9    (int (*)[++i]) { , }; /* { dg-error "expected" } */
      10    (int (*)[++i]) { f () }; /* { dg-error "too few" } */
      11  }