OSDN Git Service

* gcc.dg/torture/pr26565.c: Expect warning on packed field for
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / label-decl-4.c
1 /* Test diagnostics for duplicate label declarations.  */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
5
6 void
7 f (void)
8 {
9   __label__ a, b, a; /* { dg-error "error: duplicate label declaration 'a'" } */
10   /* { dg-error "error: previous declaration of 'a' was here" "previous" { target *-*-* } 9 } */
11   __label__ c; /* { dg-error "error: previous declaration of 'c' was here" } */
12   __label__ c; /* { dg-error "error: duplicate label declaration 'c'" } */
13   return;
14 }