2008-01-25 Douglas Gregor <doug.gregor@gmail.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / label-decl-4.c
blob7b2a195c1b29133fbed721a51becafe3275ce007
1 /* Test diagnostics for duplicate label declarations. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
6 void
7 f (void)
9 __label__ a, b, a; /* { dg-error "duplicate label declaration 'a'" } */
10 /* { dg-error "previous declaration of 'a' was here" "previous" { target *-*-* } 9 } */
11 __label__ c; /* { dg-error "previous declaration of 'c' was here" } */
12 __label__ c; /* { dg-error "duplicate label declaration 'c'" } */
13 return;