Merge from mainline.
[official-gcc.git] / gcc / testsuite / gcc.dg / label-decl-3.c
blobd49531c5dc8426866ece60adc444b95aae59725c
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 "error: label 'd' used but not defined" } */
14 /* { dg-error "error: ISO C forbids label declarations" "label decls" { target *-*-* } 13 } */
15 goto c; /* { dg-error "error: label 'c' used but not defined" } */
16 a: (void)0;
17 b: (void)0;