c: ICE with invalid sizeof [PR115642]
[official-gcc.git] / gcc / testsuite / gcc.dg / c11-labels-1.c
blob6350403bf3880d03eb70bf41d9af0dbde7cd978a
1 /* Tests for labels before declarations and at ends of compound statements. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c11" } */
5 int f(int x)
6 {
7 goto b;
8 a: int i = 2 * x;
9 goto c;
10 b: goto a;
11 { i *= 3; c: }
12 return i;