Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / label-decl-3.c
blob32daea87f1810ce9cf06ae3a51e8dd2c1fe85e64
1 /* Test diagnostics for label declarations. Test with
2 -pedantic-errors. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-pedantic-errors" } */
7 typedef int b;
9 void
10 f (void)
12 __label__ a, b, c, d;
13 __extension__ (void)&&d; /* { dg-error "label 'd' used but not defined" } */
14 /* { dg-error "ISO C forbids label declarations" "label decls" { target *-*-* } 12 } */
15 goto c; /* { dg-error "label 'c' used but not defined" } */
16 a: (void)0;
17 b: (void)0;