(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr35742.c
       1  /* PR c/35742 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=gnu99" } */
       4  /* { dg-bogus "not supported by" "" { target *-*-* } 0 } */
       5  
       6  void
       7  foo ()
       8  {
       9    for (;;)
      10      ({break;})();	/* { dg-error "is not a function" } */
      11    for (;;)
      12      ({continue;})();	/* { dg-error "is not a function" } */
      13  }