aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr35742.c
blob: 609472792097e1464e17fb2010a98b9241c6937b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR c/35742 */
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */
/* { dg-bogus "not supported by" "" { target *-*-* } 0 } */

void
foo ()
{
  for (;;)
    ({break;})();	/* { dg-error "is not a function" } */
  for (;;)
    ({continue;})();	/* { dg-error "is not a function" } */
}