* fi.po: Update.
[official-gcc.git] / gcc / testsuite / gcc.dg / label-decl-2.c
blob6706a706bfe9c3173c23159afcb95bef5365f1c0
1 /* Test diagnostics for label declarations. Test with -pedantic. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "-pedantic" } */
6 typedef int b;
8 void
9 f (void)
11 __label__ a, b, c, d; /* { dg-warning "ISO C forbids label declarations" "label decls" { target *-*-* } 11 } */
12 __extension__ (void)&&d; /* { dg-error "label 'd' used but not defined" } */
13 goto c; /* { dg-error "label 'c' used but not defined" } */
14 a: (void)0;
15 b: (void)0;