Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / stmt-expr-label-3.c
blob7b1515f89ac9925e101e8261276f2855ba8da04b
1 /* Test for labels in statement expressions: bugs 772 and 17913.
2 Test the particular case of bug 17913. */
4 /* Origin: Joseph Myers <joseph@codesourcery.com> */
5 /* { dg-do compile } */
6 /* { dg-options "-O2" } */
8 void f(void) { 1 ? 1 : ({ a : 1; 1; }); goto a; } /* { dg-error "jump into statement expression" } */