aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/stmt-expr-label-3.c
blob: 092580695220e7293a1044af438885ead84940d6 (plain)
1
2
3
4
5
6
7
8
/* Test for labels in statement expressions: bugs 772 and 17913.
   Test the particular case of bug 17913.  */

/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-O2" } */

void f(void) { 1 ? 1 : ({ a : 1; 1; }); goto a; } /* { dg-error "error: jump into statement expression" } */