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